-
Notifications
You must be signed in to change notification settings - Fork 2
/
V999__DATA.sql
66 lines (61 loc) · 1.66 KB
/
V999__DATA.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
55
56
57
58
59
60
61
62
63
INSERT INTO "company" ( "id",
"settings",
"string_attribute_1",
"string_attribute_2",
"long_attribute_1",
"boolean_attribute",
"created",
"updated")
VALUES (
'0ce84627-9a66-46bf-9a1d-4f38b82a38e3',
JSON '{"region": "region"}',
'test 1',
'test 2',
1,
false,
'2022-03-07T00:00:00.001Z',
'2022-03-07T00:00:00.001Z'
);
INSERT INTO "company" ( "id",
"settings",
"string_attribute_1",
"string_attribute_2",
"long_attribute_1",
"boolean_attribute",
"created",
"updated")
VALUES (
'7059f786-4633-4ace-a412-2f2e90556f08',
JSON '{"region": "region"}',
'test 1',
'test 2',
1,
false,
'2022-03-07T00:00:00.001Z',
'2022-03-07T00:00:00.001Z'
);
INSERT INTO "location" (
"id",
"company",
"name",
"settings",
"address_line_1",
"address_line_2",
"zip",
"city",
"country",
"created",
"updated")
VALUES (
'592c5187-cb85-4b66-b0fc-293989923e1e',
'0ce84627-9a66-46bf-9a1d-4f38b82a38e3',
'Location-1',
JSON '{"location": "location"}',
'location_1_address_line_1',
'location_1_address_line_2',
'zip1',
'city1',
'country1',
'2022-03-07T00:00:00.001Z',
'2022-03-07T00:00:00.001Z'
);