This repository was archived by the owner on Sep 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopulateDB_modified.sql
54 lines (54 loc) · 3.24 KB
/
populateDB_modified.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
42
43
44
45
46
47
48
49
50
51
52
53
54
--
-- populate table `country`
--
INSERT INTO `country` VALUES
(1,'US','2022-01-01 00:00:00','test','2022-01-01 00:00:00','test'),
(2,'Canada','2022-01-01 00:00:00','test','2022-01-01 00:00:00','test'),
(3,'Norway','2022-01-01 00:00:00','test','2022-01-01 00:00:00','test'),
(4,'Mexico','2022-01-01 00:00:00','test','2022-01-01 00:00:00','test'),
(5,'Dragonmyrth','2023-01-01 00:00:00','test','2023-01-01 00:00:00','test'),
(6,'England','2023-01-01 00:00:00','test','2023-01-01 00:00:00','test');
--
-- populate table `city`
--
INSERT INTO `city` VALUES
(1,'New York',1,'2022-01-01 00:00:00','test','2022-01-01 00:00:00','test'),
(2,'Los Angeles',1,'2022-01-01 00:00:00','test','2022-01-01 00:00:00','test'),
(3,'Toronto',2,'2022-01-01 00:00:00','test','2022-01-01 00:00:00','test'),
(4,'Vancouver',2,'2022-01-01 00:00:00','test','2022-01-01 00:00:00','test'),
(5,'Oslo',3,'2022-01-01 00:00:00','test','2022-01-01 00:00:00','test'),
(6,'Kerenborg',5,'2022-01-01 00:00:00','test','2022-01-01 00:00:00','test'),
(7,'Mexico City',4,'2022-01-01 00:00:00','test','2022-01-01 00:00:00','test');
--
-- populate table `address`
--
INSERT INTO `address` VALUES
(1,'123 Main','n/a',1,'11111','555-1212','2022-01-01 00:00:00','test','2022-01-01 00:00:00','test'),
(2,'902 Elm','n/a',3,'11112','555-1213','2022-01-01 00:00:00','test','2022-01-01 00:00:00','test'),
(3,'812 Oak','n/a',5,'11113','555-1214','2022-01-01 00:00:00','test','2022-01-01 00:00:00','test'),
(4,'123 Rancho','n/a',6,'51115','333-5422','2022-01-01 00:00:00','test','2022-01-01 00:00:00','test');
(5,'765 Jumbo','Box 202',4,'332115','867-5422','2022-01-05 00:00:00','eval','2022-01-05 00:00:00','eval');
--
-- populate table `customer`
--
INSERT INTO `customer` VALUES
(1,'John Doe',1,1,'2022-01-01 00:00:00','test','2022-01-01 00:00:00','test'),
(2,'Alfred E Newman',2,1,'2022-01-01 00:00:00','test','2022-01-01 00:00:00','test'),
(3,'Ina Prufung',3,1,'2022-01-01 00:00:00','test','2022-01-01 00:00:00','test'),
(4,'Sanyu Sherbert',4,1,'2022-01-01 00:00:00','test','2022-01-01 00:00:00','test'),
(5,'Connor Clocktower',4,1,'2022-01-01 00:00:00','test','2022-01-01 00:00:00','test');
(6,'William Peters',5,1,'2022-01-05 00:00:00','eval','2022-01-05 00:00:00','eval');
--
-- populate table `user`
--
INSERT INTO `user` VALUES
(1,'test','test',1,'2022-01-01 00:00:00','test','2022-11-21 00:00:00','eval'),
(2,'eval','eval',1,'2022-01-01 00:00:00','test','2022-11-21 00:00:00','eval');
--
-- populate table `appointment`
--
INSERT INTO `appointment` VALUES
(1,1,1,'Appt Title','Appt Desc','Appt Loc','Appt Contact','Presentation','Appt URL','2023-01-12 16:00:00','2022-01-12 17:00:00','2023-01-01 00:00:00','test','2023-01-01 00:00:00','test'),
(2,2,1,'Appt Title','Appt Desc','Appt Loc','Appt Contact','Scrum','Appt URL','2023-12-23 00:00:00','2022-12-10 00:00:00','2023-01-01 00:00:00','test','2023-01-01 00:00:00','test'),
(3,3,1,'Appt Title','Appt Desc','Appt Loc','Appt Contact','Presentation','Appt URL','2023-01-10 13:00:00','2023-01-10 14:00:00','2023-01-01 00:00:00','test','2023-01-01 00:00:00','test'),
(4,2,1,'Appt Title','Appt Desc','Appt Loc','Appt Contact','Scrum','Appt URL','2023-01-16 22:00:00','2022-01-16 23:00:00','2023-01-04 00:00:00','eval','2023-01-04 00:00:00','eval');