-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathezyevent.sql
285 lines (259 loc) · 30.1 KB
/
ezyevent.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
/*
Navicat Premium Data Transfer
Source Server : aws-cloud
Source Server Type : PostgreSQL
Source Server Version : 150005 (150005)
Source Host : ezy-db.ciyrfaxxwizn.us-east-2.rds.amazonaws.com:5432
Source Catalog : ezyevents
Source Schema : public
Target Server Type : PostgreSQL
Target Server Version : 150005 (150005)
File Encoding : 65001
Date: 26/03/2024 11:58:16
*/
-- ----------------------------
-- Table structure for bookings
-- ----------------------------
DROP TABLE IF EXISTS "bookings";
CREATE TABLE "bookings" (
"id" varchar(50) COLLATE "pg_catalog"."default" NOT NULL,
"schedule_id" varchar(50) COLLATE "pg_catalog"."default" NOT NULL,
"created_at" timestamp(6) NOT NULL,
"updated_at" timestamp(6) NOT NULL,
"user_id" varchar(50) COLLATE "pg_catalog"."default" NOT NULL
)
;
-- ----------------------------
-- Records of bookings
-- ----------------------------
BEGIN;
INSERT INTO "bookings" ("id", "schedule_id", "created_at", "updated_at", "user_id") VALUES ('7c9ee344-a176-11ee-879e-367dda299f46', '23329824-8da7-11ee-8672-acde48001122', '2023-12-23 03:34:36.406482', '2023-12-23 03:34:36.406482', '3');
COMMIT;
-- ----------------------------
-- Table structure for categories
-- ----------------------------
DROP TABLE IF EXISTS "categories";
CREATE TABLE "categories" (
"id" varchar(255) COLLATE "pg_catalog"."default" NOT NULL,
"name" varchar(255) COLLATE "pg_catalog"."default" NOT NULL,
"icon_url" varchar(255) COLLATE "pg_catalog"."default" NOT NULL
)
;
-- ----------------------------
-- Records of categories
-- ----------------------------
BEGIN;
INSERT INTO "categories" ("id", "name", "icon_url") VALUES ('2', 'Graduation', 'https://res.cloudinary.com/plartfomx/image/upload/v1665643685/icons/graduation_vxl600.svg');
INSERT INTO "categories" ("id", "name", "icon_url") VALUES ('3', 'Birthday', 'https://res.cloudinary.com/plartfomx/image/upload/v1665643685/icons/birthday_lvouod.svg');
INSERT INTO "categories" ("id", "name", "icon_url") VALUES ('1', 'Awards', 'https://res.cloudinary.com/plartfomx/image/upload/v1665643685/icons/awards_duum0c.svg');
INSERT INTO "categories" ("id", "name", "icon_url") VALUES ('4', 'Meeting', 'https://res.cloudinary.com/plartfomx/image/upload/v1665643685/icons/meeting_w4zciu.svg');
INSERT INTO "categories" ("id", "name", "icon_url") VALUES ('5', 'Reunion', 'https://res.cloudinary.com/plartfomx/image/upload/v1665643685/icons/reunion_kacohy.svg');
INSERT INTO "categories" ("id", "name", "icon_url") VALUES ('6', 'Party', 'https://res.cloudinary.com/plartfomx/image/upload/v1665643685/icons/reunion_kacohy.svg');
INSERT INTO "categories" ("id", "name", "icon_url") VALUES ('7', 'Gallery', 'https://res.cloudinary.com/plartfomx/image/upload/v1665643685/icons/reunion_kacohy.svg');
INSERT INTO "categories" ("id", "name", "icon_url") VALUES ('9', 'Science Fair', 'https://res.cloudinary.com/plartfomx/image/upload/v1665643685/icons/reunion_kacohy.svg');
INSERT INTO "categories" ("id", "name", "icon_url") VALUES ('10', 'Out door', 'https://res.cloudinary.com/plartfomx/image/upload/v1665643685/icons/reunion_kacohy.svg');
INSERT INTO "categories" ("id", "name", "icon_url") VALUES ('11', 'Hackathon', 'https://res.cloudinary.com/plartfomx/image/upload/v1665643685/icons/reunion_kacohy.svg');
COMMIT;
-- ----------------------------
-- Table structure for comments
-- ----------------------------
DROP TABLE IF EXISTS "comments";
CREATE TABLE "comments" (
"id" varchar(255) COLLATE "pg_catalog"."default" NOT NULL,
"user_id" varchar(255) COLLATE "pg_catalog"."default" NOT NULL,
"message" varchar(255) COLLATE "pg_catalog"."default" NOT NULL,
"event_id" varchar(255) COLLATE "pg_catalog"."default" NOT NULL
)
;
-- ----------------------------
-- Records of comments
-- ----------------------------
BEGIN;
COMMIT;
-- ----------------------------
-- Table structure for events
-- ----------------------------
DROP TABLE IF EXISTS "events";
CREATE TABLE "events" (
"id" varchar COLLATE "pg_catalog"."default" NOT NULL,
"name" varchar COLLATE "pg_catalog"."default",
"summary" varchar COLLATE "pg_catalog"."default",
"details" varchar COLLATE "pg_catalog"."default",
"images" varchar[][] COLLATE "pg_catalog"."default",
"banner" varchar COLLATE "pg_catalog"."default",
"lat" float4,
"lng" float4,
"location_name" varchar(255) COLLATE "pg_catalog"."default",
"category_id" varchar(255) COLLATE "pg_catalog"."default" NOT NULL,
"date" int8,
"price" float4,
"org_id" varchar(50) COLLATE "pg_catalog"."default"
)
;
-- ----------------------------
-- Records of events
-- ----------------------------
BEGIN;
INSERT INTO "events" ("id", "name", "summary", "details", "images", "banner", "lat", "lng", "location_name", "category_id", "date", "price", "org_id") VALUES ('ab54a04e-fd38-11ed-ac8f-acde48001122', 'Engineering Hackathon: Grad School Edition', 'Lorem Ipsumis simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s.', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in ', '{"",""}', 'https://firebasestorage.googleapis.com/v0/b/ezyevents.appspot.com/o/x-kwzWjTnDPLk-unsplash.jpg?alt=media&token=27ea935f-04e6-455e-a115-155a9cccc091', -93.99782, 44.14841, 'Wissink Hall, Wiecking Center', '11', 1725044400000, 0, NULL);
INSERT INTO "events" ("id", "name", "summary", "details", "images", "banner", "lat", "lng", "location_name", "category_id", "date", "price", "org_id") VALUES ('bc083e5a-fd38-11ed-ac8f-acde48001122', 'Building a Chatbot with Tensorflow', 'Lorem Ipsumis simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s.', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in ', '{"",""}', 'https://firebasestorage.googleapis.com/v0/b/ezyevents.appspot.com/o/ai.png?alt=media&token=4e224720-77ec-44de-ad22-eba080a1e740', -93.99853, 44.148052, 'Morisson Hall', '9', 1727186400000, 0, NULL);
INSERT INTO "events" ("id", "name", "summary", "details", "images", "banner", "lat", "lng", "location_name", "category_id", "date", "price", "org_id") VALUES ('d0b866b8-fd38-11ed-ac8f-acde48001122', 'Enterprenuership in the 21st Century', 'Lorem Ipsumis simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s.', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in ', '{"",""}', 'https://firebasestorage.googleapis.com/v0/b/ezyevents.appspot.com/o/meeting2.jpg?alt=media&token=30b7db8e-3d4d-44fd-8902-6df3881b7177', -93.99843, 44.14546, 'Otto Recreation Center', '4', 1722524400000, 0, NULL);
INSERT INTO "events" ("id", "name", "summary", "details", "images", "banner", "lat", "lng", "location_name", "category_id", "date", "price", "org_id") VALUES ('c928b2c2-fd38-11ed-ac8f-acde48001122', 'Wine & Dine party for First years', 'Lorem Ipsumis simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s.', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in ', '{"",""}', 'https://firebasestorage.googleapis.com/v0/b/ezyevents.appspot.com/o/reunion2.jpg?alt=media&token=53af37cd-2acc-4239-bb97-252275e8bbb4', -93.999916, 44.14669, 'Centennial Student Union', '5', 1723752000000, 0, NULL);
INSERT INTO "events" ("id", "name", "summary", "details", "images", "banner", "lat", "lng", "location_name", "category_id", "date", "price", "org_id") VALUES ('d8a9c0ec-fd38-11ed-ac8f-acde48001122', 'Spring Graduation 24/25', 'Lorem Ipsumis simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s.', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in ', '{"",""}', 'https://firebasestorage.googleapis.com/v0/b/ezyevents.appspot.com/o/grad2.jpg?alt=media&token=5225d4f7-9ea6-4a9a-b6e4-882eacbc6c27', -93.99559, 44.145573, 'EMMALINE POLSON', '2', 1728745200000, 0, NULL);
INSERT INTO "events" ("id", "name", "summary", "details", "images", "banner", "lat", "lng", "location_name", "category_id", "date", "price", "org_id") VALUES ('693fde40-7ba9-11ee-9917-acde48001122', 'Abstract Art Show', 'Lorem Ipsumis simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s.', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in ', '{"",""}', 'https://firebasestorage.googleapis.com/v0/b/ezyevents.appspot.com/o/art-show.jpg?alt=media&token=cd459a3e-8083-4aee-8309-3c59e8d83a76', -93.999916, 44.14669, 'Centennial Student Union', '7', 1731607200000, 0, '84ed78a4-8dbb-11ee-8267-acde48001122');
INSERT INTO "events" ("id", "name", "summary", "details", "images", "banner", "lat", "lng", "location_name", "category_id", "date", "price", "org_id") VALUES ('7c45df12-7ba9-11ee-9dc0-acde48001122', 'African Student Cookout', 'Lorem Ipsumis simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s.', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in ', '{"",""}', 'https://firebasestorage.googleapis.com/v0/b/ezyevents.appspot.com/o/bbe.jpg?alt=media&token=4e0c7db9-fefb-4168-b585-9de812f6a4a8', -93.999916, 44.14669, 'Centennial Student Union', '10', 1734213600000, 0, NULL);
INSERT INTO "events" ("id", "name", "summary", "details", "images", "banner", "lat", "lng", "location_name", "category_id", "date", "price", "org_id") VALUES ('bbd93062-7ba8-11ee-9f4d-acde48001122', 'EDM Concert', 'Lorem Ipsumis simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s.', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in ', '{"",""}', 'https://firebasestorage.googleapis.com/v0/b/ezyevents.appspot.com/o/edm.jpg?alt=media&token=dc358da2-753f-422a-bb72-9e7da8f322c9', -93.999916, 44.14669, 'Centennial Student Union', '6', 1735430400000, 0, NULL);
COMMIT;
-- ----------------------------
-- Table structure for organizations
-- ----------------------------
DROP TABLE IF EXISTS "organizations";
CREATE TABLE "organizations" (
"id" varchar(50) COLLATE "pg_catalog"."default" NOT NULL,
"name" varchar(225) COLLATE "pg_catalog"."default" NOT NULL,
"user_id" varchar(50) COLLATE "pg_catalog"."default" NOT NULL,
"created_at" timestamptz(6) NOT NULL,
"updated_at" timestamptz(6) NOT NULL,
"banner_url" varchar(255) COLLATE "pg_catalog"."default" NOT NULL,
"org_image_url" varchar(255) COLLATE "pg_catalog"."default" NOT NULL
)
;
-- ----------------------------
-- Records of organizations
-- ----------------------------
BEGIN;
INSERT INTO "organizations" ("id", "name", "user_id", "created_at", "updated_at", "banner_url", "org_image_url") VALUES ('84ed78a4-8dbb-11ee-8267-acde48001122', 'Great Gatzby Show blizz', '6', '2023-11-28 06:58:22.362203+00', '2023-11-28 06:58:22.362203+00', '', '');
COMMIT;
-- ----------------------------
-- Table structure for schedules
-- ----------------------------
DROP TABLE IF EXISTS "schedules";
CREATE TABLE "schedules" (
"id" varchar(50) COLLATE "pg_catalog"."default" NOT NULL,
"event_id" varchar(50) COLLATE "pg_catalog"."default" NOT NULL,
"org_id" varchar(50) COLLATE "pg_catalog"."default" NOT NULL,
"date" timestamptz(6) NOT NULL,
"updated_at" timestamptz(6) NOT NULL,
"created_at" timestamptz(6) NOT NULL
)
;
-- ----------------------------
-- Records of schedules
-- ----------------------------
BEGIN;
INSERT INTO "schedules" ("id", "event_id", "org_id", "date", "updated_at", "created_at") VALUES ('23329824-8da7-11ee-8672-acde48001122', '693fde40-7ba9-11ee-9917-acde48001122', '84ed78a4-8dbb-11ee-8267-acde48001122', '2023-11-22 06:00:00+00', '2023-11-28 04:32:28.463732+00', '2023-11-28 04:32:28.463732+00');
COMMIT;
-- ----------------------------
-- Table structure for users
-- ----------------------------
DROP TABLE IF EXISTS "users";
CREATE TABLE "users" (
"id" varchar(255) COLLATE "pg_catalog"."default" NOT NULL,
"first_name" varchar(255) COLLATE "pg_catalog"."default" NOT NULL,
"last_name" varchar(255) COLLATE "pg_catalog"."default" NOT NULL,
"email" varchar(255) COLLATE "pg_catalog"."default" NOT NULL,
"phone" varchar(255) COLLATE "pg_catalog"."default" NOT NULL,
"profile_url" varchar(255) COLLATE "pg_catalog"."default" NOT NULL,
"dob" int8 NOT NULL
)
;
-- ----------------------------
-- Records of users
-- ----------------------------
BEGIN;
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('3', 'Yang Yuning', 'Yang Yuning', '[email protected]', '212-275-0461', 'https://video.daizita89.xyz/CDsVinyl', 438);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('4', 'Wada Ryota', 'Wada Ryota', '[email protected]', '28-3606-3358', 'https://www.sohuimei.org/HouseholdKitchenAppliances', 815);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('5', 'Arai Ryota', 'Arai Ryota', '[email protected]', '11-149-2477', 'https://image.yuning92.co.jp/AppsGames', 310);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('6', 'Marcus Hunter', 'Marcus Hunter', '[email protected]', '28-0006-6923', 'https://drive.ayato706.xyz/Books', 805);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('7', 'Tsui Ching Wan', 'Tsui Ching Wan', '[email protected]', '212-584-0888', 'http://drive.lanl2.org/Beauty', 320);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('8', 'Hu Shihan', 'Hu Shihan', '[email protected]', '(20) 0695 8196', 'https://auth.yunxichan2013.biz/CellPhonesAccessories', 898);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('9', 'Jia Rui', 'Jia Rui', '[email protected]', '(151) 059 7273', 'https://www.zhenp.com/AppsGames', 75);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('10', 'Joyce Ellis', 'Joyce Ellis', '[email protected]', '11-685-7556', 'http://www.aoo.us/Baby', 537);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('11', 'Lu Rui', 'Lu Rui', '[email protected]', '90-3870-2671', 'https://image.hushihan.info/Food', 132);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('12', 'Zheng Yunxi', 'Zheng Yunxi', '[email protected]', '838-411-6631', 'http://image.chenz2.net/Beauty', 48);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('13', 'Ono Sakura', 'Ono Sakura', '[email protected]', '66-695-1717', 'https://video.ruwu1968.net/CDsVinyl', 577);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('14', 'Guo Jialun', 'Guo Jialun', '[email protected]', '7324 952375', 'http://video.aosasa.net/ToolsHomeDecoration', 673);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('15', 'Nakano Seiko', 'Nakano Seiko', '[email protected]', '7319 979843', 'http://www.soluis.co.jp/Baby', 937);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('16', 'Sasaki Airi', 'Sasaki Airi', '[email protected]', '11-778-5082', 'https://auth.dingzhiyuan6.xyz/Appliances', 45);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('17', 'Qin Xiaoming', 'Qin Xiaoming', '[email protected]', '769-179-3627', 'https://video.wuhy2.co.jp/AppsGames', 599);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('18', 'Tam Yun Fat', 'Tam Yun Fat', '[email protected]', '70-9639-8684', 'https://www.fob210.com/Others', 105);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('19', 'Randy Gibson', 'Randy Gibson', '[email protected]', '330-838-0161', 'https://drive.wfl.com/AutomotivePartsAccessories', 166);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('20', 'Lam Tak Wah', 'Lam Tak Wah', '[email protected]', '(161) 980 2646', 'http://drive.kmtse.info/VideoGames', 858);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('21', 'Dai Lu', 'Dai Lu', '[email protected]', '755-692-1006', 'http://auth.anqi74.net/Appliances', 711);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('22', 'Uchida Yuito', 'Uchida Yuito', '[email protected]', '769-854-3737', 'http://auth.gol.org/BaggageTravelEquipment', 618);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('23', 'Loui Hok Yau', 'Loui Hok Yau', '[email protected]', '7322 613139', 'http://image.atakuy8.cn/SportsOutdoor', 990);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('24', 'Chung Kwok Ming', 'Chung Kwok Ming', '[email protected]', '182-4144-7435', 'https://drive.xiuyx.jp/CollectiblesFineArt', 856);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('25', 'Chiang Fu Shing', 'Chiang Fu Shing', '[email protected]', '74-992-3108', 'http://video.jzhan.us/PetSupplies', 396);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('26', 'Raymond Collins', 'Raymond Collins', '[email protected]', '194-1250-8390', 'http://www.yilu.com/AutomotivePartsAccessories', 672);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('27', 'Ye Jiehong', 'Ye Jiehong', '[email protected]', '74-612-5805', 'http://www.ryam96.co.jp/IndustrialScientificSupplies', 803);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('28', 'Otsuka Airi', 'Otsuka Airi', '[email protected]', '(1223) 83 7236', 'https://video.wingsze9.net/HealthBabyCare', 395);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('29', 'Pang Lai Yan', 'Pang Lai Yan', '[email protected]', '312-715-1721', 'https://video.ruitang.org/SportsOutdoor', 315);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('30', 'Helen Garza', 'Helen Garza', '[email protected]', '21-2763-1608', 'https://auth.ishitsu1218.biz/CellPhonesAccessories', 856);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('31', 'Kong On Kay', 'Kong On Kay', '[email protected]', '90-2867-2137', 'http://www.xiong126.xyz/ClothingShoesandJewelry', 790);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('32', 'Marjorie Rogers', 'Marjorie Rogers', '[email protected]', '(1865) 07 3950', 'http://image.kudmai.com/Food', 648);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('33', 'Lu Anqi', 'Lu Anqi', '[email protected]', '3-8440-5536', 'https://image.matsumotohik.net/AppsGames', 701);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('34', 'Arimura Hina', 'Arimura Hina', '[email protected]', '755-708-4047', 'http://auth.danrussell.net/Books', 551);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('35', 'Nomura Hikari', 'Nomura Hikari', '[email protected]', '146-5274-8753', 'http://drive.juditmor20.co.jp/MusicalInstrument', 130);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('36', 'Sarah Sanders', 'Sarah Sanders', '[email protected]', '90-3372-0304', 'http://auth.kwokwingko.xyz/MusicalInstrument', 487);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('37', 'Ando Ayano', 'Ando Ayano', '[email protected]', '(151) 689 7730', 'https://image.akinakikuchi.com/CollectiblesFineArt', 47);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('38', 'Yamaguchi Rin', 'Yamaguchi Rin', '[email protected]', '5074 297778', 'https://video.smurata1113.org/Food', 993);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('39', 'Joyce Martin', 'Joyce Martin', '[email protected]', '70-6333-6703', 'http://www.hoyinchic.us/ClothingShoesandJewelry', 115);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('40', 'Kathy Young', 'Kathy Young', '[email protected]', '52-839-6270', 'http://auth.luyu.net/Beauty', 776);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('41', 'Kaneko Hana', 'Kaneko Hana', '[email protected]', '10-7731-2197', 'https://video.dorishill4.info/SportsOutdoor', 9);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('42', 'Julia Guzman', 'Julia Guzman', '[email protected]', '21-519-5030', 'https://video.tanakam50.biz/Handcrafts', 400);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('43', 'Wu Sai Wing', 'Wu Sai Wing', '[email protected]', '7241 531966', 'http://www.hat52.info/AutomotivePartsAccessories', 57);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('44', 'Wan Tak Wah', 'Wan Tak Wah', '[email protected]', '132-9548-4991', 'http://drive.zitaz1120.cn/IndustrialScientificSupplies', 710);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('45', 'Keith Simpson', 'Keith Simpson', '[email protected]', '312-938-5678', 'http://www.fuxiu.jp/CellPhonesAccessories', 631);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('46', 'Takada Nanami', 'Takada Nanami', '[email protected]', '183-3773-5862', 'https://video.tjanet.jp/AutomotivePartsAccessories', 372);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('47', 'Koo Sze Yu', 'Koo Sze Yu', '[email protected]', '21-953-0652', 'https://video.lzhennan.com/SportsOutdoor', 505);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('48', 'Kimura Sara', 'Kimura Sara', '[email protected]', '70-7390-5104', 'https://drive.ssato325.net/Books', 750);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('49', 'Luo Lan', 'Luo Lan', '[email protected]', '769-207-4536', 'http://image.cujia.org/Food', 528);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('50', 'Maeda Aoi', 'Maeda Aoi', '[email protected]', '5748 773814', 'http://auth.kmf03.jp/ArtsHandicraftsSewing', 278);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('51', 'Arimura Minato', 'Arimura Minato', '[email protected]', '(161) 117 8772', 'https://drive.ishnanami.biz/HouseholdKitchenAppliances', 43);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('52', 'Kwong On Kay', 'Kwong On Kay', '[email protected]', '80-8096-7001', 'http://drive.nancy6.com/CenturionGardenOutdoor', 199);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('53', 'Yamazaki Ren', 'Yamazaki Ren', '[email protected]', '769-099-3032', 'https://www.herrwe.org/Handcrafts', 971);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('54', 'Sasaki Hikaru', 'Sasaki Hikaru', '[email protected]', '7783 489594', 'http://video.yaaoi.cn/HealthBabyCare', 219);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('55', 'Sheila Ross', 'Sheila Ross', '[email protected]', '755-634-2012', 'http://video.kasumk.cn/FilmSupplies', 580);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('56', 'Wang Xiaoming', 'Wang Xiaoming', '[email protected]', '330-415-5681', 'http://video.clarencehughes.info/PetSupplies', 726);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('57', 'Kwok Wing Fat', 'Kwok Wing Fat', '[email protected]', '70-4599-8978', 'https://video.mingli.org/VideoGames', 970);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('58', 'Wendy Cooper', 'Wendy Cooper', '[email protected]', '838-790-4708', 'http://auth.olsoneric.org/BaggageTravelEquipment', 981);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('59', 'Tang Sum Wing', 'Tang Sum Wing', '[email protected]', '21-942-1307', 'https://auth.nmiu1128.xyz/Others', 162);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('60', 'Takeda Mai', 'Takeda Mai', '[email protected]', '(20) 0321 1173', 'http://video.bphil.us/ComputersElectronics', 759);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('61', 'Matsumoto Ren', 'Matsumoto Ren', '[email protected]', '11-528-1873', 'https://auth.yuisato7.jp/CollectiblesFineArt', 276);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('62', 'Heather Brooks', 'Heather Brooks', '[email protected]', '20-3196-4317', 'https://www.jianglan10.biz/ClothingShoesandJewelry', 458);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('63', 'Nishimura Mio', 'Nishimura Mio', '[email protected]', '(151) 377 4870', 'http://video.takwahl70.biz/Books', 702);
INSERT INTO "users" ("id", "first_name", "last_name", "email", "phone", "profile_url", "dob") VALUES ('64', 'Sakurai Airi', 'Sakurai Airi', '[email protected]', '614-418-3460', 'http://video.wingszeha.com/ComputersElectronics', 621);
COMMIT;
-- ----------------------------
-- Primary Key structure for table bookings
-- ----------------------------
ALTER TABLE "bookings" ADD CONSTRAINT "booking_pkey" PRIMARY KEY ("id");
-- ----------------------------
-- Primary Key structure for table categories
-- ----------------------------
ALTER TABLE "categories" ADD CONSTRAINT "event_type_pkey" PRIMARY KEY ("id");
-- ----------------------------
-- Primary Key structure for table comments
-- ----------------------------
ALTER TABLE "comments" ADD CONSTRAINT "comment_pkey" PRIMARY KEY ("id");
-- ----------------------------
-- Indexes structure for table events
-- ----------------------------
CREATE INDEX "evenet id" ON "events" USING btree (
"id" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST
);
-- ----------------------------
-- Primary Key structure for table events
-- ----------------------------
ALTER TABLE "events" ADD CONSTRAINT "events_pkey" PRIMARY KEY ("id");
-- ----------------------------
-- Primary Key structure for table organizations
-- ----------------------------
ALTER TABLE "organizations" ADD CONSTRAINT "organization_pkey" PRIMARY KEY ("id");
-- ----------------------------
-- Primary Key structure for table schedules
-- ----------------------------
ALTER TABLE "schedules" ADD CONSTRAINT "event_schedule_pkey" PRIMARY KEY ("id");
-- ----------------------------
-- Primary Key structure for table users
-- ----------------------------
ALTER TABLE "users" ADD CONSTRAINT "users_pkey" PRIMARY KEY ("id");