-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdbexport.pgsql
739 lines (526 loc) · 17.5 KB
/
dbexport.pgsql
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
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
--
-- PostgreSQL database dump
--
-- Dumped from database version 11.3
-- Dumped by pg_dump version 11.3
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_with_oids = false;
--
-- Name: admins; Type: TABLE; Schema: public; Owner: lemire-HETIC
--
CREATE TABLE public.admins (
id integer NOT NULL,
name text,
password text
);
ALTER TABLE public.admins OWNER TO "lemire-HETIC";
--
-- Name: admins_id_seq; Type: SEQUENCE; Schema: public; Owner: lemire-HETIC
--
CREATE SEQUENCE public.admins_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.admins_id_seq OWNER TO "lemire-HETIC";
--
-- Name: admins_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: lemire-HETIC
--
ALTER SEQUENCE public.admins_id_seq OWNED BY public.admins.id;
--
-- Name: answers; Type: TABLE; Schema: public; Owner: lemire-HETIC
--
CREATE TABLE public.answers (
id integer NOT NULL,
answer text,
id_step integer
);
ALTER TABLE public.answers OWNER TO "lemire-HETIC";
--
-- Name: answers_id_seq; Type: SEQUENCE; Schema: public; Owner: lemire-HETIC
--
CREATE SEQUENCE public.answers_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.answers_id_seq OWNER TO "lemire-HETIC";
--
-- Name: answers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: lemire-HETIC
--
ALTER SEQUENCE public.answers_id_seq OWNED BY public.answers.id;
--
-- Name: content; Type: TABLE; Schema: public; Owner: lemire-HETIC
--
CREATE TABLE public.content (
id integer NOT NULL,
source text,
type text,
subtitle text,
"order" integer,
content text,
id_step integer
);
ALTER TABLE public.content OWNER TO "lemire-HETIC";
--
-- Name: content_id_seq; Type: SEQUENCE; Schema: public; Owner: lemire-HETIC
--
CREATE SEQUENCE public.content_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.content_id_seq OWNER TO "lemire-HETIC";
--
-- Name: content_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: lemire-HETIC
--
ALTER SEQUENCE public.content_id_seq OWNED BY public.content.id;
--
-- Name: knex_migrations; Type: TABLE; Schema: public; Owner: lemire-HETIC
--
CREATE TABLE public.knex_migrations (
id integer NOT NULL,
name character varying(255),
batch integer,
migration_time timestamp with time zone
);
ALTER TABLE public.knex_migrations OWNER TO "lemire-HETIC";
--
-- Name: knex_migrations_id_seq; Type: SEQUENCE; Schema: public; Owner: lemire-HETIC
--
CREATE SEQUENCE public.knex_migrations_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.knex_migrations_id_seq OWNER TO "lemire-HETIC";
--
-- Name: knex_migrations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: lemire-HETIC
--
ALTER SEQUENCE public.knex_migrations_id_seq OWNED BY public.knex_migrations.id;
--
-- Name: knex_migrations_lock; Type: TABLE; Schema: public; Owner: lemire-HETIC
--
CREATE TABLE public.knex_migrations_lock (
index integer NOT NULL,
is_locked integer
);
ALTER TABLE public.knex_migrations_lock OWNER TO "lemire-HETIC";
--
-- Name: knex_migrations_lock_index_seq; Type: SEQUENCE; Schema: public; Owner: lemire-HETIC
--
CREATE SEQUENCE public.knex_migrations_lock_index_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.knex_migrations_lock_index_seq OWNER TO "lemire-HETIC";
--
-- Name: knex_migrations_lock_index_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: lemire-HETIC
--
ALTER SEQUENCE public.knex_migrations_lock_index_seq OWNED BY public.knex_migrations_lock.index;
--
-- Name: questions; Type: TABLE; Schema: public; Owner: lemire-HETIC
--
CREATE TABLE public.questions (
id integer NOT NULL,
title text,
id_step integer
);
ALTER TABLE public.questions OWNER TO "lemire-HETIC";
--
-- Name: questions_id_seq; Type: SEQUENCE; Schema: public; Owner: lemire-HETIC
--
CREATE SEQUENCE public.questions_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.questions_id_seq OWNER TO "lemire-HETIC";
--
-- Name: questions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: lemire-HETIC
--
ALTER SEQUENCE public.questions_id_seq OWNED BY public.questions.id;
--
-- Name: reply; Type: TABLE; Schema: public; Owner: lemire-HETIC
--
CREATE TABLE public.reply (
id integer NOT NULL,
id_step integer,
id_user integer,
id_answer integer
);
ALTER TABLE public.reply OWNER TO "lemire-HETIC";
--
-- Name: reply_id_seq; Type: SEQUENCE; Schema: public; Owner: lemire-HETIC
--
CREATE SEQUENCE public.reply_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.reply_id_seq OWNER TO "lemire-HETIC";
--
-- Name: reply_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: lemire-HETIC
--
ALTER SEQUENCE public.reply_id_seq OWNED BY public.reply.id;
--
-- Name: steps; Type: TABLE; Schema: public; Owner: lemire-HETIC
--
CREATE TABLE public.steps (
id integer NOT NULL,
longitude text,
latitude text,
title text,
description text,
next integer
);
ALTER TABLE public.steps OWNER TO "lemire-HETIC";
--
-- Name: steps_id_seq; Type: SEQUENCE; Schema: public; Owner: lemire-HETIC
--
CREATE SEQUENCE public.steps_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.steps_id_seq OWNER TO "lemire-HETIC";
--
-- Name: steps_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: lemire-HETIC
--
ALTER SEQUENCE public.steps_id_seq OWNED BY public.steps.id;
--
-- Name: users; Type: TABLE; Schema: public; Owner: lemire-HETIC
--
CREATE TABLE public.users (
id integer NOT NULL,
name text,
date text
);
ALTER TABLE public.users OWNER TO "lemire-HETIC";
--
-- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: lemire-HETIC
--
CREATE SEQUENCE public.users_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.users_id_seq OWNER TO "lemire-HETIC";
--
-- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: lemire-HETIC
--
ALTER SEQUENCE public.users_id_seq OWNED BY public.users.id;
--
-- Name: admins id; Type: DEFAULT; Schema: public; Owner: lemire-HETIC
--
ALTER TABLE ONLY public.admins ALTER COLUMN id SET DEFAULT nextval('public.admins_id_seq'::regclass);
--
-- Name: answers id; Type: DEFAULT; Schema: public; Owner: lemire-HETIC
--
ALTER TABLE ONLY public.answers ALTER COLUMN id SET DEFAULT nextval('public.answers_id_seq'::regclass);
--
-- Name: content id; Type: DEFAULT; Schema: public; Owner: lemire-HETIC
--
ALTER TABLE ONLY public.content ALTER COLUMN id SET DEFAULT nextval('public.content_id_seq'::regclass);
--
-- Name: knex_migrations id; Type: DEFAULT; Schema: public; Owner: lemire-HETIC
--
ALTER TABLE ONLY public.knex_migrations ALTER COLUMN id SET DEFAULT nextval('public.knex_migrations_id_seq'::regclass);
--
-- Name: knex_migrations_lock index; Type: DEFAULT; Schema: public; Owner: lemire-HETIC
--
ALTER TABLE ONLY public.knex_migrations_lock ALTER COLUMN index SET DEFAULT nextval('public.knex_migrations_lock_index_seq'::regclass);
--
-- Name: questions id; Type: DEFAULT; Schema: public; Owner: lemire-HETIC
--
ALTER TABLE ONLY public.questions ALTER COLUMN id SET DEFAULT nextval('public.questions_id_seq'::regclass);
--
-- Name: reply id; Type: DEFAULT; Schema: public; Owner: lemire-HETIC
--
ALTER TABLE ONLY public.reply ALTER COLUMN id SET DEFAULT nextval('public.reply_id_seq'::regclass);
--
-- Name: steps id; Type: DEFAULT; Schema: public; Owner: lemire-HETIC
--
ALTER TABLE ONLY public.steps ALTER COLUMN id SET DEFAULT nextval('public.steps_id_seq'::regclass);
--
-- Name: users id; Type: DEFAULT; Schema: public; Owner: lemire-HETIC
--
ALTER TABLE ONLY public.users ALTER COLUMN id SET DEFAULT nextval('public.users_id_seq'::regclass);
--
-- Data for Name: admins; Type: TABLE DATA; Schema: public; Owner: lemire-HETIC
--
COPY public.admins (id, name, password) FROM stdin;
1 admin admin
\.
--
-- Data for Name: answers; Type: TABLE DATA; Schema: public; Owner: lemire-HETIC
--
COPY public.answers (id, answer, id_step) FROM stdin;
3 Living in a community is not an issue for me 2
16 I am not sociable 2
20 Yes I do 5
1 Yes I am sociable 1
2 No way 1
15 I am aware of that 10
21 No I do not 5
14 I do not take this seriously 10
4 Yes, I am cold-blooded 3
18 Yes I am determined 4
17 No I am not 3
19 No I am not ready 4
22 I am aware of that\t 6
23 I do not take this seriously 6
\.
--
-- Data for Name: content; Type: TABLE DATA; Schema: public; Owner: lemire-HETIC
--
COPY public.content (id, source, type, subtitle, "order", content, id_step) FROM stdin;
20 \N text This is the end 0 Thanks to you, thousands of whales are still alive, and recently, Japanese whalers have banned fishing in the whale sanctuary 6
33 \N text The end 0 Thanks to the mission, thousands of whales have been saved. Recently actions have been taken to prevent whale fishing in concerned areas. We need more people like you! 10
9 \N text Your tasks 0 Hunting whaling ships will not be your only objective on the ship. Your primary tasks will consist of maintaining the ship and the moral of the crew. Every crew member will rely on other members. Your soft skills will be highly important. 2
25 uploads/myImage-1561630313617.mp4 video 3 1
26 uploads/myImage-1561630361173.mp4 video 1 2
27 uploads/myImage-1561630411285.mp4 video 1 3
28 uploads/myImage-1561630458082.mp4 video 1 4
29 uploads/myImage-1561630491568.mp4 video 2 4
30 uploads/myImage-1561630526475.mp4 video 3 4
31 uploads/myImage-1561630607581.mp4 video 1 5
32 uploads/myImage-1561630639244.mp4 video 2 5
34 uploads/myImage-1561630806480.mp4 video 1 10
5 \N text Welcome ! 0 Embarked on one of the ships in Sea-Shepherd's fleet. Attends the traditional departure of a boat and the final preparations. Prepare yourself to be thrown into a Sea Shepherd mission, you will see the reality through the everyday life of seamen \n 1
24 uploads/myImage-1561630230090.mp4 video 1 1
7 \N text The brief 2 Now that you on board, you will attend to the captain's brief to learn more about your futur mission. He will explain you how you are going to live on the ship and what kind of dangers you will possibly encounter. You will also meet the rest of the crew with whom you will live during several months. 1
35 \N text A short-lived dream 2 You are about to live an amazing adventure, where ocean will amaze you. But like any other adventure, there will be also unexpected events that will cause some stressful situations. 3
13 \N text Common issues 0 During your journey, you will encounter unforeseen events such as seasickness, shipwrecks and so on. 4
11 \N text A blue dream 0 If you commit yourself, it is for the love of the oceans and the desire to make the difference. You will evolve surrounded by nature and far from any civilization. 3
16 \N text Prepare for the battle 0 Action is part of our everyday life. Attacking whaling ships is our first priority of the mission, but it is also very dangerous. You will have to be mentally and physically prepared and moreover respecting orders and hierarchy, democracy does not have its place on our ships. 5
36 uploads/myImage-1561654153514.mp4 video \N 2 \N 6
\.
--
-- Data for Name: knex_migrations; Type: TABLE DATA; Schema: public; Owner: lemire-HETIC
--
COPY public.knex_migrations (id, name, batch, migration_time) FROM stdin;
1 20190620093559_users.js 1 2019-06-26 22:14:30.878+02
2 20190620094712_reply.js 1 2019-06-26 22:14:30.884+02
3 20190620094718_questions.js 1 2019-06-26 22:14:30.889+02
4 20190620094726_answers.js 1 2019-06-26 22:14:30.894+02
5 20190620094731_content.js 1 2019-06-26 22:14:30.898+02
6 20190620094736_steps.js 1 2019-06-26 22:14:30.91+02
7 20190620163512_admins.js 1 2019-06-26 22:14:30.922+02
\.
--
-- Data for Name: knex_migrations_lock; Type: TABLE DATA; Schema: public; Owner: lemire-HETIC
--
COPY public.knex_migrations_lock (index, is_locked) FROM stdin;
1 0
\.
--
-- Data for Name: questions; Type: TABLE DATA; Schema: public; Owner: lemire-HETIC
--
COPY public.questions (id, title, id_step) FROM stdin;
7 Are you aware of the journey that we are offering you? 10
3 Are you ready to live with total strangers for several months? 1
2 Is living in a community an issue for you? 2
8 Are you ready to face all dangers? 4
1 Can you manage your stress? 3
9 Do you have any medical issues? 5
10 Are you aware of the journey that we are offering you? 6
\.
--
-- Data for Name: reply; Type: TABLE DATA; Schema: public; Owner: lemire-HETIC
--
COPY public.reply (id, id_step, id_user, id_answer) FROM stdin;
1 1 7 1
2 1 7 2
3 1 7 1
4 1 7 2
5 1 8 1
6 1 8 2
7 1 8 1
8 1 9 1
9 1 11 1
10 1 11 1
19 1 31 1
20 1 31 1
21 1 31 2
22 2 31 3
23 3 31 4
24 4 31 18
25 4 31 18
26 5 31 20
27 1 38 2
28 2 38 16
29 3 38 17
30 4 38 19
31 5 38 21
32 1 32 2
33 2 32 16
34 3 32 17
35 4 32 19
36 5 32 21
37 1 33 1
38 2 33 3
39 3 33 4
40 4 33 18
41 5 33 20
42 5 33 20
43 1 34 1
44 2 34 3
45 3 34 4
46 4 34 18
47 5 34 20
48 5 34 20
49 1 35 1
50 2 35 16
51 3 35 17
52 4 35 18
53 5 35 21
54 6 35 22
\.
--
-- Data for Name: steps; Type: TABLE DATA; Schema: public; Owner: lemire-HETIC
--
COPY public.steps (id, longitude, latitude, title, description, next) FROM stdin;
1 121.109898 -35.197613 Step 1 Boarding and departure 2
2 129.069645 -40.526916 Step 2 THE DRUDGERY 3
3 119.511500 -46.857267 Step 3 THE MAGIC 4
4 131.842549 -50.697588 Step 4 The unforeseen events 5
6 139.379544 -62.839014 Step 6 Mission achieved 10
5 121.027066 -60.105390 Step 5 At the boarding 6
\.
--
-- Data for Name: users; Type: TABLE DATA; Schema: public; Owner: lemire-HETIC
--
COPY public.users (id, name, date) FROM stdin;
1 Edwin 20/06/2019
2 Jason 01/06/2019
3 Kento 12/06/2019
4 Cassandra 02/06/2019
5 Tristan 14/06/2019
6 Virgil 13/06/2019
7 Hey 26/06/2019
8 Hello 26/06/2019
9 Vui 26/06/2019
10 Hallo 27/06/2019
11 Hallo 27/06/2019
12 Good 27/06/2019
30 Laos 27/06/2019
31 Virgil 27/06/2019
32 Edwin 27/06/2019
33 tristan 27/06/2019
34 edwin 27/06/2019
35 Test 27/06/2019
\.
--
-- Name: admins_id_seq; Type: SEQUENCE SET; Schema: public; Owner: lemire-HETIC
--
SELECT pg_catalog.setval('public.admins_id_seq', 1, true);
--
-- Name: answers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: lemire-HETIC
--
SELECT pg_catalog.setval('public.answers_id_seq', 23, true);
--
-- Name: content_id_seq; Type: SEQUENCE SET; Schema: public; Owner: lemire-HETIC
--
SELECT pg_catalog.setval('public.content_id_seq', 36, true);
--
-- Name: knex_migrations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: lemire-HETIC
--
SELECT pg_catalog.setval('public.knex_migrations_id_seq', 7, true);
--
-- Name: knex_migrations_lock_index_seq; Type: SEQUENCE SET; Schema: public; Owner: lemire-HETIC
--
SELECT pg_catalog.setval('public.knex_migrations_lock_index_seq', 1, true);
--
-- Name: questions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: lemire-HETIC
--
SELECT pg_catalog.setval('public.questions_id_seq', 10, true);
--
-- Name: reply_id_seq; Type: SEQUENCE SET; Schema: public; Owner: lemire-HETIC
--
SELECT pg_catalog.setval('public.reply_id_seq', 54, true);
--
-- Name: steps_id_seq; Type: SEQUENCE SET; Schema: public; Owner: lemire-HETIC
--
SELECT pg_catalog.setval('public.steps_id_seq', 10, true);
--
-- Name: users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: lemire-HETIC
--
SELECT pg_catalog.setval('public.users_id_seq', 35, true);
--
-- Name: admins admins_pkey; Type: CONSTRAINT; Schema: public; Owner: lemire-HETIC
--
ALTER TABLE ONLY public.admins
ADD CONSTRAINT admins_pkey PRIMARY KEY (id);
--
-- Name: answers answers_pkey; Type: CONSTRAINT; Schema: public; Owner: lemire-HETIC
--
ALTER TABLE ONLY public.answers
ADD CONSTRAINT answers_pkey PRIMARY KEY (id);
--
-- Name: content content_pkey; Type: CONSTRAINT; Schema: public; Owner: lemire-HETIC
--
ALTER TABLE ONLY public.content
ADD CONSTRAINT content_pkey PRIMARY KEY (id);
--
-- Name: knex_migrations_lock knex_migrations_lock_pkey; Type: CONSTRAINT; Schema: public; Owner: lemire-HETIC
--
ALTER TABLE ONLY public.knex_migrations_lock
ADD CONSTRAINT knex_migrations_lock_pkey PRIMARY KEY (index);
--
-- Name: knex_migrations knex_migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: lemire-HETIC
--
ALTER TABLE ONLY public.knex_migrations
ADD CONSTRAINT knex_migrations_pkey PRIMARY KEY (id);
--
-- Name: questions questions_pkey; Type: CONSTRAINT; Schema: public; Owner: lemire-HETIC
--
ALTER TABLE ONLY public.questions
ADD CONSTRAINT questions_pkey PRIMARY KEY (id);
--
-- Name: reply reply_pkey; Type: CONSTRAINT; Schema: public; Owner: lemire-HETIC
--
ALTER TABLE ONLY public.reply
ADD CONSTRAINT reply_pkey PRIMARY KEY (id);
--
-- Name: steps steps_pkey; Type: CONSTRAINT; Schema: public; Owner: lemire-HETIC
--
ALTER TABLE ONLY public.steps
ADD CONSTRAINT steps_pkey PRIMARY KEY (id);
--
-- Name: users users_pkey; Type: CONSTRAINT; Schema: public; Owner: lemire-HETIC
--
ALTER TABLE ONLY public.users
ADD CONSTRAINT users_pkey PRIMARY KEY (id);
--
-- PostgreSQL database dump complete
--