-- -- PostgreSQL database dump -- -- Dumped from database version 12.16 (Ubuntu 12.16-0ubuntu0.20.04.1) -- Dumped by pg_dump version 12.16 (Ubuntu 12.16-0ubuntu0.20.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: galaxy; Type: TABLE; Schema: public; Owner: freecodecamp -- CREATE TABLE public.galaxy ( galaxy_id integer NOT NULL, name character varying NOT NULL, galaxy_type integer NOT NULL, distance_from_earth numeric, description text ); 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_types; Type: TABLE; Schema: public; Owner: freecodecamp -- CREATE TABLE public.galaxy_types ( galaxy_types_id integer NOT NULL, description character varying NOT NULL, name character varying NOT NULL ); ALTER TABLE public.galaxy_types OWNER TO freecodecamp; -- -- Name: galaxy_types_galaxy_types_id_seq; Type: SEQUENCE; Schema: public; Owner: freecodecamp -- CREATE SEQUENCE public.galaxy_types_galaxy_types_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.galaxy_types_galaxy_types_id_seq OWNER TO freecodecamp; -- -- Name: galaxy_types_galaxy_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: freecodecamp -- ALTER SEQUENCE public.galaxy_types_galaxy_types_id_seq OWNED BY public.galaxy_types.galaxy_types_id; -- -- Name: moon; Type: TABLE; Schema: public; Owner: freecodecamp -- CREATE TABLE public.moon ( moon_id integer NOT NULL, name character varying NOT NULL, distance_from_earth numeric, is_spherical boolean NOT NULL, 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 ( planet_id integer NOT NULL, name character varying NOT NULL, planet_type integer NOT NULL, distance_from_earth numeric, description text, has_life boolean 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 ( star_id integer NOT NULL, name character varying NOT NULL, distance_from_earth numeric, galaxy_id integer, description text ); 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: 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: galaxy_types galaxy_types_id; Type: DEFAULT; Schema: public; Owner: freecodecamp -- ALTER TABLE ONLY public.galaxy_types ALTER COLUMN galaxy_types_id SET DEFAULT nextval('public.galaxy_types_galaxy_types_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); -- -- Data for Name: galaxy; Type: TABLE DATA; Schema: public; Owner: freecodecamp -- INSERT INTO public.galaxy VALUES (1, 'Andromeda', 1, 2.538, 'Largest Galaxy in the Local Group (The Milky Way is the second largest), with at least 19 satellite galaxies. Barred spiral galaxy.'); INSERT INTO public.galaxy VALUES (2, 'Canis Major Dwarf', 2, 0.025, 'Satellite of Milky Way (accretion by Milky Way)'); INSERT INTO public.galaxy VALUES (3, 'IC 1613', 3, 2.24, ''); INSERT INTO public.galaxy VALUES (4, 'Triangulum Galaxy', 4, 2.73, 'Most distant (difficult) naked eye object. Closest unbarred spiral galaxy to us and third largest galaxy in the Local Group.'); INSERT INTO public.galaxy VALUES (5, 'Dwingeloo 1', 5, 9.1, '35,000 ly'); INSERT INTO public.galaxy VALUES (6, 'Centaurus A', 6, 12.01, 'Brightest galaxy in Centaurus A Group and brightest and nearest radio galaxy'); INSERT INTO public.galaxy VALUES (7, 'Milky Way', 7, 0, 'Our home galaxy'); -- -- Data for Name: galaxy_types; Type: TABLE DATA; Schema: public; Owner: freecodecamp -- INSERT INTO public.galaxy_types VALUES (1, 'These galaxies resemble giant rotating pinwheels with a pancake-like disk of stars and a central bulge or tight concentration of stars.', 'Spiral'); INSERT INTO public.galaxy_types VALUES (2, 'Elliptical galaxies have shapes that range from completely round to oval. They are less common than spiral galaxies.', 'Elliptical'); INSERT INTO public.galaxy_types VALUES (3, 'They have the central bulge and disk common to spiral galaxies but no arms. But like ellipticals, lenticular galaxies have older stellar populations and little ongoing star formation.', 'Lenticular'); -- -- Data for Name: moon; Type: TABLE DATA; Schema: public; Owner: freecodecamp -- INSERT INTO public.moon VALUES (1, 'Moon', 0, true, 3); INSERT INTO public.moon VALUES (2, 'Phobos', 0, false, 4); INSERT INTO public.moon VALUES (3, 'Deimos', 0, false, 4); INSERT INTO public.moon VALUES (4, 'Io', 0, true, 5); INSERT INTO public.moon VALUES (5, 'Europa', 0, true, 5); INSERT INTO public.moon VALUES (6, 'Ganymede', 0, true, 5); INSERT INTO public.moon VALUES (7, 'Callisto', 0, true, 5); INSERT INTO public.moon VALUES (8, 'Mimas', 0, true, 6); INSERT INTO public.moon VALUES (9, 'Enceladus', 0, true, 6); INSERT INTO public.moon VALUES (10, 'Tethys', 0, true, 6); INSERT INTO public.moon VALUES (11, 'Dione', 0, true, 6); INSERT INTO public.moon VALUES (12, 'Rhea', 0, true, 6); INSERT INTO public.moon VALUES (13, 'Titan', 0, true, 6); INSERT INTO public.moon VALUES (14, 'Ariel', 0, true, 7); INSERT INTO public.moon VALUES (15, 'Umbriel', 0, true, 7); INSERT INTO public.moon VALUES (16, 'Titania', 0, true, 7); INSERT INTO public.moon VALUES (17, 'Overon', 0, true, 7); INSERT INTO public.moon VALUES (18, 'Miranda', 0, true, 7); INSERT INTO public.moon VALUES (19, 'Triton', 0, true, 8); INSERT INTO public.moon VALUES (20, 'Nereid', 0, true, 8); -- -- Data for Name: planet; Type: TABLE DATA; Schema: public; Owner: freecodecamp -- INSERT INTO public.planet VALUES (1, 'Mercury', 1, 0.000009691536, 'Closest to Sol', false, 1); INSERT INTO public.planet VALUES (2, 'Venus', 1, 0.000004374831, 'Very cloudy', false, 1); INSERT INTO public.planet VALUES (3, 'Earth', 1, 0, 'We live here', true, 1); INSERT INTO public.planet VALUES (4, 'Mars', 1, 0.000008280439, 'Red planet', false, 1); INSERT INTO public.planet VALUES (5, 'Jupiter', 2, 0.00006646592, 'Largest gas giant in Sol system', false, 1); INSERT INTO public.planet VALUES (6, 'Saturn', 2, 0.0001349929, 'Pretty rings', false, 1); INSERT INTO public.planet VALUES (7, 'Uranus', 2, 0.0002876504, 'Tilted', false, 1); INSERT INTO public.planet VALUES (8, 'Neptune', 2, 0.0004596547, 'Fartherest planet in Sol system', false, 1); INSERT INTO public.planet VALUES (9, 'Proxima Centauri d', 3, 4.2465, '', false, 2); INSERT INTO public.planet VALUES (10, 'Proxima Centauri b', 3, 4.2465, 'possibly habitable', false, 2); INSERT INTO public.planet VALUES (11, 'Lacaille 9352 b', 3, 10.724, '', false, 7); INSERT INTO public.planet VALUES (12, 'Lacaille 9352 c', 3, 10.724, '', false, 7); -- -- Data for Name: star; Type: TABLE DATA; Schema: public; Owner: freecodecamp -- INSERT INTO public.star VALUES (1, 'Sol', 0.0000158, 7, 'Our home star'); INSERT INTO public.star VALUES (2, 'Alpha Centauri Proxima', 4.2465, 7, 'flair star with 2 confirmed planets'); INSERT INTO public.star VALUES (3, 'Barnard''s Star', 5.9629, 7, 'flare star, largest with proper motion'); INSERT INTO public.star VALUES (4, 'Wolf 359', 7.8558, 7, 'flare star, has 1 candidate & 1 refuted planet'); INSERT INTO public.star VALUES (5, 'Alpha Canis Major A', 8.7094, 7, 'brightest star in the night sky'); INSERT INTO public.star VALUES (6, 'Ross 154', 9.7063, 7, 'flare star'); INSERT INTO public.star VALUES (7, 'Lacaille 9352', 10.724, 7, ''); -- -- Name: galaxy_galaxy_id_seq; Type: SEQUENCE SET; Schema: public; Owner: freecodecamp -- SELECT pg_catalog.setval('public.galaxy_galaxy_id_seq', 7, true); -- -- Name: galaxy_types_galaxy_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: freecodecamp -- SELECT pg_catalog.setval('public.galaxy_types_galaxy_types_id_seq', 3, true); -- -- Name: moon_moon_id_seq; Type: SEQUENCE SET; Schema: public; Owner: freecodecamp -- SELECT pg_catalog.setval('public.moon_moon_id_seq', 20, true); -- -- Name: planet_planet_id_seq; Type: SEQUENCE SET; Schema: public; Owner: freecodecamp -- SELECT pg_catalog.setval('public.planet_planet_id_seq', 12, true); -- -- Name: star_star_id_seq; Type: SEQUENCE SET; Schema: public; Owner: freecodecamp -- SELECT pg_catalog.setval('public.star_star_id_seq', 7, true); -- -- Name: galaxy galaxy_pkey; Type: CONSTRAINT; Schema: public; Owner: freecodecamp -- ALTER TABLE ONLY public.galaxy ADD CONSTRAINT galaxy_pkey PRIMARY KEY (galaxy_id); -- -- Name: galaxy_types galaxy_types_pkey; Type: CONSTRAINT; Schema: public; Owner: freecodecamp -- ALTER TABLE ONLY public.galaxy_types ADD CONSTRAINT galaxy_types_pkey PRIMARY KEY (galaxy_types_id); -- -- 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_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: galaxy_types unique_galaxy_type_name; Type: CONSTRAINT; Schema: public; Owner: freecodecamp -- ALTER TABLE ONLY public.galaxy_types ADD CONSTRAINT unique_galaxy_type_name UNIQUE (name); -- -- Name: moon unique_moon_name; Type: CONSTRAINT; Schema: public; Owner: freecodecamp -- ALTER TABLE ONLY public.moon ADD CONSTRAINT unique_moon_name UNIQUE (name); -- -- Name: galaxy unique_name; Type: CONSTRAINT; Schema: public; Owner: freecodecamp -- ALTER TABLE ONLY public.galaxy ADD CONSTRAINT unique_name UNIQUE (name); -- -- Name: planet unique_planet_name; Type: CONSTRAINT; Schema: public; Owner: freecodecamp -- ALTER TABLE ONLY public.planet ADD CONSTRAINT unique_planet_name UNIQUE (name); -- -- Name: star unique_star_name; Type: CONSTRAINT; Schema: public; Owner: freecodecamp -- ALTER TABLE ONLY public.star ADD CONSTRAINT unique_star_name UNIQUE (name); -- -- Name: star fk_galaxy; Type: FK CONSTRAINT; Schema: public; Owner: freecodecamp -- ALTER TABLE ONLY public.star ADD CONSTRAINT fk_galaxy FOREIGN KEY (galaxy_id) REFERENCES public.galaxy(galaxy_id); -- -- Name: moon fk_planet; Type: FK CONSTRAINT; Schema: public; Owner: freecodecamp -- ALTER TABLE ONLY public.moon ADD CONSTRAINT fk_planet FOREIGN KEY (planet_id) REFERENCES public.planet(planet_id); -- -- Name: planet fk_star; Type: FK CONSTRAINT; Schema: public; Owner: freecodecamp -- ALTER TABLE ONLY public.planet ADD CONSTRAINT fk_star FOREIGN KEY (star_id) REFERENCES public.star(star_id); -- -- PostgreSQL database dump complete --