-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestdb.sql
654 lines (437 loc) · 17.3 KB
/
testdb.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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
--
-- PostgreSQL database dump
--
-- Dumped from database version 14.7 (Homebrew)
-- Dumped by pg_dump version 14.7 (Homebrew)
SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET xmloption = content;
SET client_min_messages = warning;
SET row_security = off;
SET default_tablespace = '';
SET default_table_access_method = heap;
--
-- Name: active_storage_attachments; Type: TABLE; Schema: public; Owner: KamiliaTahiri
--
CREATE TABLE public.active_storage_attachments (
id bigint NOT NULL,
name character varying NOT NULL,
record_type character varying NOT NULL,
record_id bigint NOT NULL,
blob_id bigint NOT NULL,
created_at timestamp(6) without time zone NOT NULL
);
ALTER TABLE public.active_storage_attachments OWNER TO "KamiliaTahiri";
--
-- Name: active_storage_attachments_id_seq; Type: SEQUENCE; Schema: public; Owner: KamiliaTahiri
--
CREATE SEQUENCE public.active_storage_attachments_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.active_storage_attachments_id_seq OWNER TO "KamiliaTahiri";
--
-- Name: active_storage_attachments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: KamiliaTahiri
--
ALTER SEQUENCE public.active_storage_attachments_id_seq OWNED BY public.active_storage_attachments.id;
--
-- Name: active_storage_blobs; Type: TABLE; Schema: public; Owner: KamiliaTahiri
--
CREATE TABLE public.active_storage_blobs (
id bigint NOT NULL,
key character varying NOT NULL,
filename character varying NOT NULL,
content_type character varying,
metadata text,
service_name character varying NOT NULL,
byte_size bigint NOT NULL,
checksum character varying,
created_at timestamp(6) without time zone NOT NULL
);
ALTER TABLE public.active_storage_blobs OWNER TO "KamiliaTahiri";
--
-- Name: active_storage_blobs_id_seq; Type: SEQUENCE; Schema: public; Owner: KamiliaTahiri
--
CREATE SEQUENCE public.active_storage_blobs_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.active_storage_blobs_id_seq OWNER TO "KamiliaTahiri";
--
-- Name: active_storage_blobs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: KamiliaTahiri
--
ALTER SEQUENCE public.active_storage_blobs_id_seq OWNED BY public.active_storage_blobs.id;
--
-- Name: active_storage_variant_records; Type: TABLE; Schema: public; Owner: KamiliaTahiri
--
CREATE TABLE public.active_storage_variant_records (
id bigint NOT NULL,
blob_id bigint NOT NULL,
variation_digest character varying NOT NULL
);
ALTER TABLE public.active_storage_variant_records OWNER TO "KamiliaTahiri";
--
-- Name: active_storage_variant_records_id_seq; Type: SEQUENCE; Schema: public; Owner: KamiliaTahiri
--
CREATE SEQUENCE public.active_storage_variant_records_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.active_storage_variant_records_id_seq OWNER TO "KamiliaTahiri";
--
-- Name: active_storage_variant_records_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: KamiliaTahiri
--
ALTER SEQUENCE public.active_storage_variant_records_id_seq OWNED BY public.active_storage_variant_records.id;
--
-- Name: ar_internal_metadata; Type: TABLE; Schema: public; Owner: KamiliaTahiri
--
CREATE TABLE public.ar_internal_metadata (
key character varying NOT NULL,
value character varying,
created_at timestamp(6) without time zone NOT NULL,
updated_at timestamp(6) without time zone NOT NULL
);
ALTER TABLE public.ar_internal_metadata OWNER TO "KamiliaTahiri";
--
-- Name: menus; Type: TABLE; Schema: public; Owner: KamiliaTahiri
--
CREATE TABLE public.menus (
id bigint NOT NULL,
title character varying,
subtitle character varying,
description text,
price double precision,
created_at timestamp(6) without time zone NOT NULL,
updated_at timestamp(6) without time zone NOT NULL,
bestoff boolean
);
ALTER TABLE public.menus OWNER TO "KamiliaTahiri";
--
-- Name: menus_id_seq; Type: SEQUENCE; Schema: public; Owner: KamiliaTahiri
--
CREATE SEQUENCE public.menus_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.menus_id_seq OWNER TO "KamiliaTahiri";
--
-- Name: menus_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: KamiliaTahiri
--
ALTER SEQUENCE public.menus_id_seq OWNED BY public.menus.id;
--
-- Name: reservations; Type: TABLE; Schema: public; Owner: KamiliaTahiri
--
CREATE TABLE public.reservations (
id bigint NOT NULL,
phone_number character varying,
date date,
"time" time without time zone,
people_number integer,
allergy character varying,
created_at timestamp(6) without time zone NOT NULL,
updated_at timestamp(6) without time zone NOT NULL,
email character varying,
lastname character varying
);
ALTER TABLE public.reservations OWNER TO "KamiliaTahiri";
--
-- Name: reservations_id_seq; Type: SEQUENCE; Schema: public; Owner: KamiliaTahiri
--
CREATE SEQUENCE public.reservations_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.reservations_id_seq OWNER TO "KamiliaTahiri";
--
-- Name: reservations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: KamiliaTahiri
--
ALTER SEQUENCE public.reservations_id_seq OWNED BY public.reservations.id;
--
-- Name: schema_migrations; Type: TABLE; Schema: public; Owner: KamiliaTahiri
--
CREATE TABLE public.schema_migrations (
version character varying NOT NULL
);
ALTER TABLE public.schema_migrations OWNER TO "KamiliaTahiri";
--
-- Name: slots; Type: TABLE; Schema: public; Owner: KamiliaTahiri
--
CREATE TABLE public.slots (
id bigint NOT NULL,
date date,
"time" time without time zone,
reservation_id bigint NOT NULL,
created_at timestamp(6) without time zone NOT NULL,
updated_at timestamp(6) without time zone NOT NULL
);
ALTER TABLE public.slots OWNER TO "KamiliaTahiri";
--
-- Name: slots_id_seq; Type: SEQUENCE; Schema: public; Owner: KamiliaTahiri
--
CREATE SEQUENCE public.slots_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.slots_id_seq OWNER TO "KamiliaTahiri";
--
-- Name: slots_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: KamiliaTahiri
--
ALTER SEQUENCE public.slots_id_seq OWNED BY public.slots.id;
--
-- Name: users; Type: TABLE; Schema: public; Owner: KamiliaTahiri
--
CREATE TABLE public.users (
id bigint NOT NULL,
email character varying DEFAULT ''::character varying NOT NULL,
encrypted_password character varying DEFAULT ''::character varying NOT NULL,
reset_password_token character varying,
reset_password_sent_at timestamp(6) without time zone,
remember_created_at timestamp(6) without time zone,
firstname character varying,
lastname character varying,
created_at timestamp(6) without time zone NOT NULL,
updated_at timestamp(6) without time zone NOT NULL,
allergy character varying,
people_number integer
);
ALTER TABLE public.users OWNER TO "KamiliaTahiri";
--
-- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: KamiliaTahiri
--
CREATE SEQUENCE public.users_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.users_id_seq OWNER TO "KamiliaTahiri";
--
-- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: KamiliaTahiri
--
ALTER SEQUENCE public.users_id_seq OWNED BY public.users.id;
--
-- Name: active_storage_attachments id; Type: DEFAULT; Schema: public; Owner: KamiliaTahiri
--
ALTER TABLE ONLY public.active_storage_attachments ALTER COLUMN id SET DEFAULT nextval('public.active_storage_attachments_id_seq'::regclass);
--
-- Name: active_storage_blobs id; Type: DEFAULT; Schema: public; Owner: KamiliaTahiri
--
ALTER TABLE ONLY public.active_storage_blobs ALTER COLUMN id SET DEFAULT nextval('public.active_storage_blobs_id_seq'::regclass);
--
-- Name: active_storage_variant_records id; Type: DEFAULT; Schema: public; Owner: KamiliaTahiri
--
ALTER TABLE ONLY public.active_storage_variant_records ALTER COLUMN id SET DEFAULT nextval('public.active_storage_variant_records_id_seq'::regclass);
--
-- Name: menus id; Type: DEFAULT; Schema: public; Owner: KamiliaTahiri
--
ALTER TABLE ONLY public.menus ALTER COLUMN id SET DEFAULT nextval('public.menus_id_seq'::regclass);
--
-- Name: reservations id; Type: DEFAULT; Schema: public; Owner: KamiliaTahiri
--
ALTER TABLE ONLY public.reservations ALTER COLUMN id SET DEFAULT nextval('public.reservations_id_seq'::regclass);
--
-- Name: slots id; Type: DEFAULT; Schema: public; Owner: KamiliaTahiri
--
ALTER TABLE ONLY public.slots ALTER COLUMN id SET DEFAULT nextval('public.slots_id_seq'::regclass);
--
-- Name: users id; Type: DEFAULT; Schema: public; Owner: KamiliaTahiri
--
ALTER TABLE ONLY public.users ALTER COLUMN id SET DEFAULT nextval('public.users_id_seq'::regclass);
--
-- Data for Name: active_storage_attachments; Type: TABLE DATA; Schema: public; Owner: KamiliaTahiri
--
COPY public.active_storage_attachments (id, name, record_type, record_id, blob_id, created_at) FROM stdin;
1 illustration Menu 1 1 2023-03-27 15:23:25.854243
2 illustration Menu 2 2 2023-03-27 15:42:59.36674
\.
--
-- Data for Name: active_storage_blobs; Type: TABLE DATA; Schema: public; Owner: KamiliaTahiri
--
COPY public.active_storage_blobs (id, key, filename, content_type, metadata, service_name, byte_size, checksum, created_at) FROM stdin;
1 8halhr8wbrkh6w2h76ia7m9it2o2 pexels-maria-bortolotto-6270541.jpg image/jpeg {"identified":true,"analyzed":true} local 3028593 a1ZTN6EQS66WL+OEPn/Viw== 2023-03-27 15:23:25.839346
2 t56yeugtpgii0zqbbrfhox1hnis0 Palette coolors.png image/png {"identified":true,"analyzed":true} local 2552985 Gy5xC81chs8VhVSpvqlpQA== 2023-03-27 15:42:59.363973
\.
--
-- Data for Name: active_storage_variant_records; Type: TABLE DATA; Schema: public; Owner: KamiliaTahiri
--
COPY public.active_storage_variant_records (id, blob_id, variation_digest) FROM stdin;
\.
--
-- Data for Name: ar_internal_metadata; Type: TABLE DATA; Schema: public; Owner: KamiliaTahiri
--
COPY public.ar_internal_metadata (key, value, created_at, updated_at) FROM stdin;
environment development 2023-03-27 14:40:41.365594 2023-03-27 14:40:41.365594
\.
--
-- Data for Name: menus; Type: TABLE DATA; Schema: public; Owner: KamiliaTahiri
--
COPY public.menus (id, title, subtitle, description, price, created_at, updated_at, bestoff) FROM stdin;
1 Gambas Gambasito fjslkjfslfjsjfklfjsf\r\nasdlkfjasldkfj\r\nasdkfjaslkdfjasf 22 2023-03-27 15:23:25.792741 2023-03-27 15:42:35.065992 t
2 Burger Burgerito asdflkj\r\nasdjlkfajs\r\nasfdlkjaslkdfj 15 2023-03-27 15:42:59.342699 2023-03-27 15:42:59.368807 f
\.
--
-- Data for Name: reservations; Type: TABLE DATA; Schema: public; Owner: KamiliaTahiri
--
COPY public.reservations (id, phone_number, date, "time", people_number, allergy, created_at, updated_at, email, lastname) FROM stdin;
\.
--
-- Data for Name: schema_migrations; Type: TABLE DATA; Schema: public; Owner: KamiliaTahiri
--
COPY public.schema_migrations (version) FROM stdin;
20230314153939
20230317104823
20230323151434
20230323152301
20230323155846
20230324153932
20230327143842
20230327151017
20230327151828
\.
--
-- Data for Name: slots; Type: TABLE DATA; Schema: public; Owner: KamiliaTahiri
--
COPY public.slots (id, date, "time", reservation_id, created_at, updated_at) FROM stdin;
\.
--
-- Data for Name: users; Type: TABLE DATA; Schema: public; Owner: KamiliaTahiri
--
COPY public.users (id, email, encrypted_password, reset_password_token, reset_password_sent_at, remember_created_at, firstname, lastname, created_at, updated_at, allergy, people_number) FROM stdin;
1 [email protected] $2a$12$rR6s4hT4dx9Akt2YxOtLaOe0tNy42O9KC0fgLZqTU.Bxmg3NH2Vo6 \N \N \N k k 2023-03-27 14:41:42.863813 2023-03-27 14:41:42.863813 \N
\.
--
-- Name: active_storage_attachments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: KamiliaTahiri
--
SELECT pg_catalog.setval('public.active_storage_attachments_id_seq', 2, true);
--
-- Name: active_storage_blobs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: KamiliaTahiri
--
SELECT pg_catalog.setval('public.active_storage_blobs_id_seq', 2, true);
--
-- Name: active_storage_variant_records_id_seq; Type: SEQUENCE SET; Schema: public; Owner: KamiliaTahiri
--
SELECT pg_catalog.setval('public.active_storage_variant_records_id_seq', 1, false);
--
-- Name: menus_id_seq; Type: SEQUENCE SET; Schema: public; Owner: KamiliaTahiri
--
SELECT pg_catalog.setval('public.menus_id_seq', 2, true);
--
-- Name: reservations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: KamiliaTahiri
--
SELECT pg_catalog.setval('public.reservations_id_seq', 1, false);
--
-- Name: slots_id_seq; Type: SEQUENCE SET; Schema: public; Owner: KamiliaTahiri
--
SELECT pg_catalog.setval('public.slots_id_seq', 1, false);
--
-- Name: users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: KamiliaTahiri
--
SELECT pg_catalog.setval('public.users_id_seq', 1, true);
--
-- Name: active_storage_attachments active_storage_attachments_pkey; Type: CONSTRAINT; Schema: public; Owner: KamiliaTahiri
--
ALTER TABLE ONLY public.active_storage_attachments
ADD CONSTRAINT active_storage_attachments_pkey PRIMARY KEY (id);
--
-- Name: active_storage_blobs active_storage_blobs_pkey; Type: CONSTRAINT; Schema: public; Owner: KamiliaTahiri
--
ALTER TABLE ONLY public.active_storage_blobs
ADD CONSTRAINT active_storage_blobs_pkey PRIMARY KEY (id);
--
-- Name: active_storage_variant_records active_storage_variant_records_pkey; Type: CONSTRAINT; Schema: public; Owner: KamiliaTahiri
--
ALTER TABLE ONLY public.active_storage_variant_records
ADD CONSTRAINT active_storage_variant_records_pkey PRIMARY KEY (id);
--
-- Name: ar_internal_metadata ar_internal_metadata_pkey; Type: CONSTRAINT; Schema: public; Owner: KamiliaTahiri
--
ALTER TABLE ONLY public.ar_internal_metadata
ADD CONSTRAINT ar_internal_metadata_pkey PRIMARY KEY (key);
--
-- Name: menus menus_pkey; Type: CONSTRAINT; Schema: public; Owner: KamiliaTahiri
--
ALTER TABLE ONLY public.menus
ADD CONSTRAINT menus_pkey PRIMARY KEY (id);
--
-- Name: reservations reservations_pkey; Type: CONSTRAINT; Schema: public; Owner: KamiliaTahiri
--
ALTER TABLE ONLY public.reservations
ADD CONSTRAINT reservations_pkey PRIMARY KEY (id);
--
-- Name: schema_migrations schema_migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: KamiliaTahiri
--
ALTER TABLE ONLY public.schema_migrations
ADD CONSTRAINT schema_migrations_pkey PRIMARY KEY (version);
--
-- Name: slots slots_pkey; Type: CONSTRAINT; Schema: public; Owner: KamiliaTahiri
--
ALTER TABLE ONLY public.slots
ADD CONSTRAINT slots_pkey PRIMARY KEY (id);
--
-- Name: users users_pkey; Type: CONSTRAINT; Schema: public; Owner: KamiliaTahiri
--
ALTER TABLE ONLY public.users
ADD CONSTRAINT users_pkey PRIMARY KEY (id);
--
-- Name: index_active_storage_attachments_on_blob_id; Type: INDEX; Schema: public; Owner: KamiliaTahiri
--
CREATE INDEX index_active_storage_attachments_on_blob_id ON public.active_storage_attachments USING btree (blob_id);
--
-- Name: index_active_storage_attachments_uniqueness; Type: INDEX; Schema: public; Owner: KamiliaTahiri
--
CREATE UNIQUE INDEX index_active_storage_attachments_uniqueness ON public.active_storage_attachments USING btree (record_type, record_id, name, blob_id);
--
-- Name: index_active_storage_blobs_on_key; Type: INDEX; Schema: public; Owner: KamiliaTahiri
--
CREATE UNIQUE INDEX index_active_storage_blobs_on_key ON public.active_storage_blobs USING btree (key);
--
-- Name: index_active_storage_variant_records_uniqueness; Type: INDEX; Schema: public; Owner: KamiliaTahiri
--
CREATE UNIQUE INDEX index_active_storage_variant_records_uniqueness ON public.active_storage_variant_records USING btree (blob_id, variation_digest);
--
-- Name: index_slots_on_reservation_id; Type: INDEX; Schema: public; Owner: KamiliaTahiri
--
CREATE INDEX index_slots_on_reservation_id ON public.slots USING btree (reservation_id);
--
-- Name: index_users_on_email; Type: INDEX; Schema: public; Owner: KamiliaTahiri
--
CREATE UNIQUE INDEX index_users_on_email ON public.users USING btree (email);
--
-- Name: index_users_on_reset_password_token; Type: INDEX; Schema: public; Owner: KamiliaTahiri
--
CREATE UNIQUE INDEX index_users_on_reset_password_token ON public.users USING btree (reset_password_token);
--
-- Name: slots fk_rails_6450cc91e6; Type: FK CONSTRAINT; Schema: public; Owner: KamiliaTahiri
--
ALTER TABLE ONLY public.slots
ADD CONSTRAINT fk_rails_6450cc91e6 FOREIGN KEY (reservation_id) REFERENCES public.reservations(id);
--
-- Name: active_storage_variant_records fk_rails_993965df05; Type: FK CONSTRAINT; Schema: public; Owner: KamiliaTahiri
--
ALTER TABLE ONLY public.active_storage_variant_records
ADD CONSTRAINT fk_rails_993965df05 FOREIGN KEY (blob_id) REFERENCES public.active_storage_blobs(id);
--
-- Name: active_storage_attachments fk_rails_c3b3935057; Type: FK CONSTRAINT; Schema: public; Owner: KamiliaTahiri
--
ALTER TABLE ONLY public.active_storage_attachments
ADD CONSTRAINT fk_rails_c3b3935057 FOREIGN KEY (blob_id) REFERENCES public.active_storage_blobs(id);
--
-- PostgreSQL database dump complete
--