-
Notifications
You must be signed in to change notification settings - Fork 0
/
Code
613 lines (423 loc) · 16.5 KB
/
Code
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
--
-- PostgreSQL database dump
--
-- Dumped from database version 12.9 (Ubuntu 12.9-2.pgdg20.04+1)
-- Dumped by pg_dump version 12.9 (Ubuntu 12.9-2.pgdg20.04+1)
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;
DROP DATABASE universe;
--
-- Name: universe; Type: DATABASE; Schema: -; Owner: freecodecamp
--
CREATE DATABASE universe WITH TEMPLATE = template0 ENCODING = 'UTF8' LC_COLLATE = 'C.UTF-8' LC_CTYPE = 'C.UTF-8';
ALTER DATABASE universe OWNER TO freecodecamp;
\connect universe
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: earth; Type: TABLE; Schema: public; Owner: freecodecamp
--
CREATE TABLE public.earth (
name character varying(60),
age_in_a_millon_of_years integer,
is_spherical text,
earth_id integer NOT NULL,
land integer,
sea numeric NOT NULL,
habitat text,
water boolean
);
ALTER TABLE public.earth OWNER TO freecodecamp;
--
-- Name: earth_earth_id_seq; Type: SEQUENCE; Schema: public; Owner: freecodecamp
--
CREATE SEQUENCE public.earth_earth_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.earth_earth_id_seq OWNER TO freecodecamp;
--
-- Name: earth_earth_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: freecodecamp
--
ALTER SEQUENCE public.earth_earth_id_seq OWNED BY public.earth.earth_id;
--
-- Name: galaxy; Type: TABLE; Schema: public; Owner: freecodecamp
--
CREATE TABLE public.galaxy (
name character varying(60),
description text,
brightest boolean NOT NULL,
shines_high boolean NOT NULL,
night_star integer NOT NULL,
galaxy_id integer NOT NULL,
galaxy_location numeric
);
ALTER TABLE public.galaxy OWNER TO freecodecamp;
--
-- Name: galaxy_galaxy_id_seq; Type: SEQUENCE; Schema: public; Owner: freecodecamp
--
CREATE SEQUENCE public.galaxy_galaxy_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.galaxy_galaxy_id_seq OWNER TO freecodecamp;
--
-- Name: galaxy_galaxy_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: freecodecamp
--
ALTER SEQUENCE public.galaxy_galaxy_id_seq OWNED BY public.galaxy.galaxy_id;
--
-- Name: galaxy_night_star_seq; Type: SEQUENCE; Schema: public; Owner: freecodecamp
--
CREATE SEQUENCE public.galaxy_night_star_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.galaxy_night_star_seq OWNER TO freecodecamp;
--
-- Name: galaxy_night_star_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: freecodecamp
--
ALTER SEQUENCE public.galaxy_night_star_seq OWNED BY public.galaxy.night_star;
--
-- Name: moon; Type: TABLE; Schema: public; Owner: freecodecamp
--
CREATE TABLE public.moon (
name character varying(60),
distance integer NOT NULL,
space text,
speed numeric NOT NULL,
rotation boolean,
moon_id integer NOT NULL,
moon_light integer,
planet_id integer
);
ALTER TABLE public.moon OWNER TO freecodecamp;
--
-- Name: moon_moon_id_seq; Type: SEQUENCE; Schema: public; Owner: freecodecamp
--
CREATE SEQUENCE public.moon_moon_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.moon_moon_id_seq OWNER TO freecodecamp;
--
-- Name: moon_moon_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: freecodecamp
--
ALTER SEQUENCE public.moon_moon_id_seq OWNED BY public.moon.moon_id;
--
-- Name: planet; Type: TABLE; Schema: public; Owner: freecodecamp
--
CREATE TABLE public.planet (
name character varying(60),
planet_types numeric,
mecury integer,
venus numeric NOT NULL,
mars boolean NOT NULL,
jupiter character varying(30),
planet_id integer NOT NULL,
star_id integer
);
ALTER TABLE public.planet OWNER TO freecodecamp;
--
-- Name: planet_planet_id_seq; Type: SEQUENCE; Schema: public; Owner: freecodecamp
--
CREATE SEQUENCE public.planet_planet_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.planet_planet_id_seq OWNER TO freecodecamp;
--
-- Name: planet_planet_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: freecodecamp
--
ALTER SEQUENCE public.planet_planet_id_seq OWNED BY public.planet.planet_id;
--
-- Name: star; Type: TABLE; Schema: public; Owner: freecodecamp
--
CREATE TABLE public.star (
name character varying(60),
milky_way integer,
types text,
colors text NOT NULL,
shapes text NOT NULL,
star_id integer NOT NULL,
star_light integer,
galaxy_id integer
);
ALTER TABLE public.star OWNER TO freecodecamp;
--
-- Name: star_star_id_seq; Type: SEQUENCE; Schema: public; Owner: freecodecamp
--
CREATE SEQUENCE public.star_star_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.star_star_id_seq OWNER TO freecodecamp;
--
-- Name: star_star_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: freecodecamp
--
ALTER SEQUENCE public.star_star_id_seq OWNED BY public.star.star_id;
--
-- Name: sun; Type: TABLE; Schema: public; Owner: freecodecamp
--
CREATE TABLE public.sun (
name character varying(60),
sun_id integer NOT NULL,
ozone_layer integer,
eclipse numeric NOT NULL,
diversion text NOT NULL,
speed_of_light boolean
);
ALTER TABLE public.sun OWNER TO freecodecamp;
--
-- Name: sun_sun_id_seq; Type: SEQUENCE; Schema: public; Owner: freecodecamp
--
CREATE SEQUENCE public.sun_sun_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.sun_sun_id_seq OWNER TO freecodecamp;
--
-- Name: sun_sun_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: freecodecamp
--
ALTER SEQUENCE public.sun_sun_id_seq OWNED BY public.sun.sun_id;
--
-- Name: earth earth_id; Type: DEFAULT; Schema: public; Owner: freecodecamp
--
ALTER TABLE ONLY public.earth ALTER COLUMN earth_id SET DEFAULT nextval('public.earth_earth_id_seq'::regclass);
--
-- Name: galaxy night_star; Type: DEFAULT; Schema: public; Owner: freecodecamp
--
ALTER TABLE ONLY public.galaxy ALTER COLUMN night_star SET DEFAULT nextval('public.galaxy_night_star_seq'::regclass);
--
-- Name: galaxy galaxy_id; Type: DEFAULT; Schema: public; Owner: freecodecamp
--
ALTER TABLE ONLY public.galaxy ALTER COLUMN galaxy_id SET DEFAULT nextval('public.galaxy_galaxy_id_seq'::regclass);
--
-- Name: moon moon_id; Type: DEFAULT; Schema: public; Owner: freecodecamp
--
ALTER TABLE ONLY public.moon ALTER COLUMN moon_id SET DEFAULT nextval('public.moon_moon_id_seq'::regclass);
--
-- Name: planet planet_id; Type: DEFAULT; Schema: public; Owner: freecodecamp
--
ALTER TABLE ONLY public.planet ALTER COLUMN planet_id SET DEFAULT nextval('public.planet_planet_id_seq'::regclass);
--
-- Name: star star_id; Type: DEFAULT; Schema: public; Owner: freecodecamp
--
ALTER TABLE ONLY public.star ALTER COLUMN star_id SET DEFAULT nextval('public.star_star_id_seq'::regclass);
--
-- Name: sun sun_id; Type: DEFAULT; Schema: public; Owner: freecodecamp
--
ALTER TABLE ONLY public.sun ALTER COLUMN sun_id SET DEFAULT nextval('public.sun_sun_id_seq'::regclass);
--
-- Data for Name: earth; Type: TABLE DATA; Schema: public; Owner: freecodecamp
--
INSERT INTO public.earth VALUES ('Marine', NULL, NULL, 1, 10, 2345.43, NULL, NULL);
INSERT INTO public.earth VALUES ('Oxygen', NULL, NULL, 2, 20, 654.56, NULL, NULL);
INSERT INTO public.earth VALUES ('Gravity', NULL, NULL, 3, 30, 45678.5, NULL, NULL);
--
-- Data for Name: galaxy; Type: TABLE DATA; Schema: public; Owner: freecodecamp
--
INSERT INTO public.galaxy VALUES ('nucleus', 'warped', true, false, 4, 5, 2345.5);
INSERT INTO public.galaxy VALUES ('central bulge', 'bulge', false, true, 5, 6, 34.5);
INSERT INTO public.galaxy VALUES ('disk', 'gassy', true, false, 6, 7, 43.4);
INSERT INTO public.galaxy VALUES ('spiral arms', 'other galaxies', false, true, 7, 8, 50.9);
INSERT INTO public.galaxy VALUES ('massive halo', 'invisible halo', true, false, 8, 9, 34256.45);
INSERT INTO public.galaxy VALUES ('dark matter', 'black hole', false, true, 9, 10, 5678.4);
--
-- Data for Name: moon; Type: TABLE DATA; Schema: public; Owner: freecodecamp
--
INSERT INTO public.moon VALUES ('Tides', 100, 'Tid', 43.5, true, 1, 99, NULL);
INSERT INTO public.moon VALUES ('Rise', 200, 'Ris', 2345.3, false, 2, 34, NULL);
INSERT INTO public.moon VALUES ('Fall', 100, 'Fa', 654.34, NULL, 3, 30, NULL);
INSERT INTO public.moon VALUES ('Quakes', 200, 'Qua', 876.45, true, 4, 60, NULL);
INSERT INTO public.moon VALUES ('New moon', 100, 'New', 876.7, false, 5, 22, NULL);
INSERT INTO public.moon VALUES ('Full moon', 200, 'Full', 2345.4, NULL, 6, 10, NULL);
INSERT INTO public.moon VALUES ('Crescent', 100, 'Cres', 4567.5, true, 7, 90, NULL);
INSERT INTO public.moon VALUES ('Quarter', 200, 'Quart', 986.4, false, 8, 33, NULL);
INSERT INTO public.moon VALUES ('Waxing', 100, 'Wax', 567.2, NULL, 9, 87, NULL);
INSERT INTO public.moon VALUES ('Gibbous', 200, 'Gib', 3456.3, true, 10, 20, NULL);
INSERT INTO public.moon VALUES ('Waning', 100, 'Wan', 987.5, false, 11, 66, NULL);
INSERT INTO public.moon VALUES ('Lunar', 200, 'Lun', 234.67, true, 18, 1, NULL);
INSERT INTO public.moon VALUES ('Orbit', 100, 'Orb', 7654.23, false, 19, 2, NULL);
INSERT INTO public.moon VALUES ('Colliding', 200, 'Col', 345.8, NULL, 20, 3, NULL);
INSERT INTO public.moon VALUES ('Cosmic rays', 100, 'Cos', 456.45, true, 21, 4, NULL);
INSERT INTO public.moon VALUES ('Meteorites', 200, 'Met', 56748.4, false, 22, 5, NULL);
INSERT INTO public.moon VALUES ('Variations', 100, 'Var', 87654.32, NULL, 23, 6, NULL);
INSERT INTO public.moon VALUES ('Seismograph', 200, 'Seis', 3456.45, true, 24, 7, NULL);
INSERT INTO public.moon VALUES ('Cracks', 100, 'Cra', 7890.12, false, 25, 8, NULL);
INSERT INTO public.moon VALUES ('Ruptures', 200, 'Rup', 3456.5, NULL, 26, 9, NULL);
INSERT INTO public.moon VALUES ('Cold', 100, 'Old', 67892.34, true, 27, 13, NULL);
--
-- Data for Name: planet; Type: TABLE DATA; Schema: public; Owner: freecodecamp
--
INSERT INTO public.planet VALUES ('Nuclear', 10.1, NULL, 11.2, false, 'Fusion', 7, NULL);
INSERT INTO public.planet VALUES ('Energy', 20.1, NULL, 23.2, true, 'En', 8, NULL);
INSERT INTO public.planet VALUES ('Asteroid', 30.3, NULL, 31.4, false, 'Ast', 9, NULL);
INSERT INTO public.planet VALUES ('Ceres', 48.6, NULL, 49.00, true, 'Cer', 10, NULL);
INSERT INTO public.planet VALUES ('Saturn', 29.4, NULL, 36.9, false, 'Sat', 11, NULL);
INSERT INTO public.planet VALUES ('Uranus', 60.1, NULL, 66.7, false, 'Ura', 12, NULL);
INSERT INTO public.planet VALUES ('Neptune', 123.5, NULL, 23.3, true, 'Nep', 13, NULL);
INSERT INTO public.planet VALUES ('Orbital', 54.6, NULL, 76.34, false, 'Orb', 14, NULL);
INSERT INTO public.planet VALUES ('Eris', 3876.3, NULL, 34.4, false, 'Eri', 15, NULL);
INSERT INTO public.planet VALUES ('Diameter', 2345.3, NULL, 7654.3, true, 'Dia', 16, NULL);
INSERT INTO public.planet VALUES ('Charon', 987.5, NULL, 676.34, false, 'Cha', 17, NULL);
INSERT INTO public.planet VALUES ('Plutoids', 456.9, NULL, 2345.65, true, 'Plu', 18, NULL);
--
-- Data for Name: star; Type: TABLE DATA; Schema: public; Owner: freecodecamp
--
INSERT INTO public.star VALUES ('protostar', 1, 'a star', 'red', 'circle', 1, 23, NULL);
INSERT INTO public.star VALUES ('red giant', 2, 'stars', 'orange', 'shapeless', 2, 12, NULL);
INSERT INTO public.star VALUES ('main sequence', 3, 'a star', 'yellow', 'circle', 3, 34, NULL);
INSERT INTO public.star VALUES ('carbon', 4, 'stars', 'green', 'shapeless', 4, 45, NULL);
INSERT INTO public.star VALUES ('Rigel', 5, 'a star', 'white', 'circle', 5, 56, NULL);
INSERT INTO public.star VALUES ('cluster', 6, 'stars', 'blue', 'shapeless', 6, 67, NULL);
--
-- Data for Name: sun; Type: TABLE DATA; Schema: public; Owner: freecodecamp
--
INSERT INTO public.sun VALUES ('Hydrogen', 1, NULL, 8765.5, 'Full', NULL);
INSERT INTO public.sun VALUES ('Helium', 2, NULL, 23456.65, 'Half', NULL);
INSERT INTO public.sun VALUES ('Temperature', 3, NULL, 200.5, 'Not too hot and not too cold', NULL);
--
-- Name: earth_earth_id_seq; Type: SEQUENCE SET; Schema: public; Owner: freecodecamp
--
SELECT pg_catalog.setval('public.earth_earth_id_seq', 3, true);
--
-- Name: galaxy_galaxy_id_seq; Type: SEQUENCE SET; Schema: public; Owner: freecodecamp
--
SELECT pg_catalog.setval('public.galaxy_galaxy_id_seq', 10, true);
--
-- Name: galaxy_night_star_seq; Type: SEQUENCE SET; Schema: public; Owner: freecodecamp
--
SELECT pg_catalog.setval('public.galaxy_night_star_seq', 9, true);
--
-- Name: moon_moon_id_seq; Type: SEQUENCE SET; Schema: public; Owner: freecodecamp
--
SELECT pg_catalog.setval('public.moon_moon_id_seq', 27, true);
--
-- Name: planet_planet_id_seq; Type: SEQUENCE SET; Schema: public; Owner: freecodecamp
--
SELECT pg_catalog.setval('public.planet_planet_id_seq', 18, true);
--
-- Name: star_star_id_seq; Type: SEQUENCE SET; Schema: public; Owner: freecodecamp
--
SELECT pg_catalog.setval('public.star_star_id_seq', 6, true);
--
-- Name: sun_sun_id_seq; Type: SEQUENCE SET; Schema: public; Owner: freecodecamp
--
SELECT pg_catalog.setval('public.sun_sun_id_seq', 3, true);
--
-- Name: earth earth_land_key; Type: CONSTRAINT; Schema: public; Owner: freecodecamp
--
ALTER TABLE ONLY public.earth
ADD CONSTRAINT earth_land_key UNIQUE (land);
--
-- Name: earth earth_pkey; Type: CONSTRAINT; Schema: public; Owner: freecodecamp
--
ALTER TABLE ONLY public.earth
ADD CONSTRAINT earth_pkey PRIMARY KEY (earth_id);
--
-- Name: galaxy galaxy_galaxy_location_key; Type: CONSTRAINT; Schema: public; Owner: freecodecamp
--
ALTER TABLE ONLY public.galaxy
ADD CONSTRAINT galaxy_galaxy_location_key UNIQUE (galaxy_location);
--
-- Name: galaxy galaxy_pkey; Type: CONSTRAINT; Schema: public; Owner: freecodecamp
--
ALTER TABLE ONLY public.galaxy
ADD CONSTRAINT galaxy_pkey PRIMARY KEY (galaxy_id);
--
-- Name: moon moon_moon_light_key; Type: CONSTRAINT; Schema: public; Owner: freecodecamp
--
ALTER TABLE ONLY public.moon
ADD CONSTRAINT moon_moon_light_key UNIQUE (moon_light);
--
-- Name: moon moon_pkey; Type: CONSTRAINT; Schema: public; Owner: freecodecamp
--
ALTER TABLE ONLY public.moon
ADD CONSTRAINT moon_pkey PRIMARY KEY (moon_id);
--
-- Name: planet planet_mecury_key; Type: CONSTRAINT; Schema: public; Owner: freecodecamp
--
ALTER TABLE ONLY public.planet
ADD CONSTRAINT planet_mecury_key UNIQUE (mecury);
--
-- Name: planet planet_pkey; Type: CONSTRAINT; Schema: public; Owner: freecodecamp
--
ALTER TABLE ONLY public.planet
ADD CONSTRAINT planet_pkey PRIMARY KEY (planet_id);
--
-- Name: star star_pkey; Type: CONSTRAINT; Schema: public; Owner: freecodecamp
--
ALTER TABLE ONLY public.star
ADD CONSTRAINT star_pkey PRIMARY KEY (star_id);
--
-- Name: star star_star_light_key; Type: CONSTRAINT; Schema: public; Owner: freecodecamp
--
ALTER TABLE ONLY public.star
ADD CONSTRAINT star_star_light_key UNIQUE (star_light);
--
-- Name: sun sun_ozone_layer_key; Type: CONSTRAINT; Schema: public; Owner: freecodecamp
--
ALTER TABLE ONLY public.sun
ADD CONSTRAINT sun_ozone_layer_key UNIQUE (ozone_layer);
--
-- Name: sun sun_pkey; Type: CONSTRAINT; Schema: public; Owner: freecodecamp
--
ALTER TABLE ONLY public.sun
ADD CONSTRAINT sun_pkey PRIMARY KEY (sun_id);
--
-- Name: moon moon_planet_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: freecodecamp
--
ALTER TABLE ONLY public.moon
ADD CONSTRAINT moon_planet_id_fkey FOREIGN KEY (planet_id) REFERENCES public.planet(planet_id);
--
-- Name: planet planet_star_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: freecodecamp
--
ALTER TABLE ONLY public.planet
ADD CONSTRAINT planet_star_id_fkey FOREIGN KEY (star_id) REFERENCES public.star(star_id);
--
-- Name: star star_galaxy_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: freecodecamp
--
ALTER TABLE ONLY public.star
ADD CONSTRAINT star_galaxy_id_fkey FOREIGN KEY (galaxy_id) REFERENCES public.galaxy(galaxy_id);
--
-- PostgreSQL database dump complete
--