-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfillDB.sql
41 lines (37 loc) · 989 Bytes
/
fillDB.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
-- consider foreign key dependencies!
-- drop all data
SOURCE ./dml/delete.sql
-- insert testdata
SOURCE ./dml/usergroup.sql
SOURCE ./dml/user.sql
SOURCE ./dml/calendar.sql
SOURCE ./dml/doctor.sql
SOURCE ./dml/patient.sql
SOURCE ./dml/servicecode.sql
SOURCE ./dml/orthoptist.sql
SOURCE ./dml/receptionist.sql
SOURCE ./dml/administrator.sql
SOURCE ./dml/queue.sql
SOURCE ./dml/eventtype.sql
SOURCE ./dml/calendarEvent.sql
SOURCE ./dml/diagnosis.sql
SOURCE ./dml/medicine.sql
SOURCE ./dml/examinationprotocol.sql
SOURCE ./dml/workdisability.sql
SOURCE ./dml/workinghours.sql
SOURCE ./dml/calendarworkinghours.sql
SOURCE ./dml/insurancecarrier.sql
SOURCE ./dml/examinationprotocolservicecode.sql
SOURCE ./dml/examinationresult.sql
SOURCE ./dml/prescription.sql
SOURCE ./dml/prescriptionentry.sql
SOURCE ./dml/visualaid.sql
/* TODO
examinationresult.sql
prescription.sql
prescriptionentry.sql
derzeit nicht unbedingt benötigt (?)
permission.sql
userpermission.sql
referralletter.sql
*/