287 lines
7.3 KiB
SQL
287 lines
7.3 KiB
SQL
--
|
|
-- 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 salon;
|
|
--
|
|
-- Name: salon; Type: DATABASE; Schema: -; Owner: freecodecamp
|
|
--
|
|
|
|
CREATE DATABASE salon WITH TEMPLATE = template0 ENCODING = 'UTF8' LC_COLLATE = 'C.UTF-8' LC_CTYPE = 'C.UTF-8';
|
|
|
|
|
|
ALTER DATABASE salon OWNER TO freecodecamp;
|
|
|
|
\connect salon
|
|
|
|
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: appointments; Type: TABLE; Schema: public; Owner: freecodecamp
|
|
--
|
|
|
|
CREATE TABLE public.appointments (
|
|
appointment_id integer NOT NULL,
|
|
customer_id integer NOT NULL,
|
|
service_id integer NOT NULL,
|
|
"time" character varying(20) NOT NULL
|
|
);
|
|
|
|
|
|
ALTER TABLE public.appointments OWNER TO freecodecamp;
|
|
|
|
--
|
|
-- Name: appointments_appointment_id_seq; Type: SEQUENCE; Schema: public; Owner: freecodecamp
|
|
--
|
|
|
|
CREATE SEQUENCE public.appointments_appointment_id_seq
|
|
AS integer
|
|
START WITH 1
|
|
INCREMENT BY 1
|
|
NO MINVALUE
|
|
NO MAXVALUE
|
|
CACHE 1;
|
|
|
|
|
|
ALTER TABLE public.appointments_appointment_id_seq OWNER TO freecodecamp;
|
|
|
|
--
|
|
-- Name: appointments_appointment_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: freecodecamp
|
|
--
|
|
|
|
ALTER SEQUENCE public.appointments_appointment_id_seq OWNED BY public.appointments.appointment_id;
|
|
|
|
|
|
--
|
|
-- Name: customers; Type: TABLE; Schema: public; Owner: freecodecamp
|
|
--
|
|
|
|
CREATE TABLE public.customers (
|
|
customer_id integer NOT NULL,
|
|
name character varying(100) NOT NULL,
|
|
phone character varying(20) NOT NULL
|
|
);
|
|
|
|
|
|
ALTER TABLE public.customers OWNER TO freecodecamp;
|
|
|
|
--
|
|
-- Name: customers_customer_id_seq; Type: SEQUENCE; Schema: public; Owner: freecodecamp
|
|
--
|
|
|
|
CREATE SEQUENCE public.customers_customer_id_seq
|
|
AS integer
|
|
START WITH 1
|
|
INCREMENT BY 1
|
|
NO MINVALUE
|
|
NO MAXVALUE
|
|
CACHE 1;
|
|
|
|
|
|
ALTER TABLE public.customers_customer_id_seq OWNER TO freecodecamp;
|
|
|
|
--
|
|
-- Name: customers_customer_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: freecodecamp
|
|
--
|
|
|
|
ALTER SEQUENCE public.customers_customer_id_seq OWNED BY public.customers.customer_id;
|
|
|
|
|
|
--
|
|
-- Name: services; Type: TABLE; Schema: public; Owner: freecodecamp
|
|
--
|
|
|
|
CREATE TABLE public.services (
|
|
service_id integer NOT NULL,
|
|
name character varying(100) NOT NULL
|
|
);
|
|
|
|
|
|
ALTER TABLE public.services OWNER TO freecodecamp;
|
|
|
|
--
|
|
-- Name: services_service_id_seq; Type: SEQUENCE; Schema: public; Owner: freecodecamp
|
|
--
|
|
|
|
CREATE SEQUENCE public.services_service_id_seq
|
|
AS integer
|
|
START WITH 1
|
|
INCREMENT BY 1
|
|
NO MINVALUE
|
|
NO MAXVALUE
|
|
CACHE 1;
|
|
|
|
|
|
ALTER TABLE public.services_service_id_seq OWNER TO freecodecamp;
|
|
|
|
--
|
|
-- Name: services_service_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: freecodecamp
|
|
--
|
|
|
|
ALTER SEQUENCE public.services_service_id_seq OWNED BY public.services.service_id;
|
|
|
|
|
|
--
|
|
-- Name: appointments appointment_id; Type: DEFAULT; Schema: public; Owner: freecodecamp
|
|
--
|
|
|
|
ALTER TABLE ONLY public.appointments ALTER COLUMN appointment_id SET DEFAULT nextval('public.appointments_appointment_id_seq'::regclass);
|
|
|
|
|
|
--
|
|
-- Name: customers customer_id; Type: DEFAULT; Schema: public; Owner: freecodecamp
|
|
--
|
|
|
|
ALTER TABLE ONLY public.customers ALTER COLUMN customer_id SET DEFAULT nextval('public.customers_customer_id_seq'::regclass);
|
|
|
|
|
|
--
|
|
-- Name: services service_id; Type: DEFAULT; Schema: public; Owner: freecodecamp
|
|
--
|
|
|
|
ALTER TABLE ONLY public.services ALTER COLUMN service_id SET DEFAULT nextval('public.services_service_id_seq'::regclass);
|
|
|
|
|
|
--
|
|
-- Data for Name: appointments; Type: TABLE DATA; Schema: public; Owner: freecodecamp
|
|
--
|
|
|
|
INSERT INTO public.appointments VALUES (1, 6, 1, '10:30');
|
|
INSERT INTO public.appointments VALUES (2, 6, 2, '11am');
|
|
INSERT INTO public.appointments VALUES (3, 6, 1, '10:30');
|
|
INSERT INTO public.appointments VALUES (4, 6, 1, '10:30');
|
|
INSERT INTO public.appointments VALUES (17, 32, 1, '9am');
|
|
INSERT INTO public.appointments VALUES (18, 33, 1, 'Test');
|
|
INSERT INTO public.appointments VALUES (19, 34, 1, '10am');
|
|
|
|
|
|
--
|
|
-- Data for Name: customers; Type: TABLE DATA; Schema: public; Owner: freecodecamp
|
|
--
|
|
|
|
INSERT INTO public.customers VALUES (6, 'Fabio', '555-555-5555');
|
|
INSERT INTO public.customers VALUES (32, 'Tes', '111-111-1111');
|
|
INSERT INTO public.customers VALUES (33, 'Tes', '222-222-2222');
|
|
INSERT INTO public.customers VALUES (34, 'Test', '333-333-3333');
|
|
|
|
|
|
--
|
|
-- Data for Name: services; Type: TABLE DATA; Schema: public; Owner: freecodecamp
|
|
--
|
|
|
|
INSERT INTO public.services VALUES (1, 'cut');
|
|
INSERT INTO public.services VALUES (2, 'color');
|
|
INSERT INTO public.services VALUES (3, 'perm');
|
|
INSERT INTO public.services VALUES (4, 'style');
|
|
INSERT INTO public.services VALUES (5, 'trim');
|
|
|
|
|
|
--
|
|
-- Name: appointments_appointment_id_seq; Type: SEQUENCE SET; Schema: public; Owner: freecodecamp
|
|
--
|
|
|
|
SELECT pg_catalog.setval('public.appointments_appointment_id_seq', 25, true);
|
|
|
|
|
|
--
|
|
-- Name: customers_customer_id_seq; Type: SEQUENCE SET; Schema: public; Owner: freecodecamp
|
|
--
|
|
|
|
SELECT pg_catalog.setval('public.customers_customer_id_seq', 39, true);
|
|
|
|
|
|
--
|
|
-- Name: services_service_id_seq; Type: SEQUENCE SET; Schema: public; Owner: freecodecamp
|
|
--
|
|
|
|
SELECT pg_catalog.setval('public.services_service_id_seq', 5, true);
|
|
|
|
|
|
--
|
|
-- Name: appointments appointments_pkey; Type: CONSTRAINT; Schema: public; Owner: freecodecamp
|
|
--
|
|
|
|
ALTER TABLE ONLY public.appointments
|
|
ADD CONSTRAINT appointments_pkey PRIMARY KEY (appointment_id);
|
|
|
|
|
|
--
|
|
-- Name: customers customers_phone_key; Type: CONSTRAINT; Schema: public; Owner: freecodecamp
|
|
--
|
|
|
|
ALTER TABLE ONLY public.customers
|
|
ADD CONSTRAINT customers_phone_key UNIQUE (phone);
|
|
|
|
|
|
--
|
|
-- Name: customers customers_pkey; Type: CONSTRAINT; Schema: public; Owner: freecodecamp
|
|
--
|
|
|
|
ALTER TABLE ONLY public.customers
|
|
ADD CONSTRAINT customers_pkey PRIMARY KEY (customer_id);
|
|
|
|
|
|
--
|
|
-- Name: services services_name_key; Type: CONSTRAINT; Schema: public; Owner: freecodecamp
|
|
--
|
|
|
|
ALTER TABLE ONLY public.services
|
|
ADD CONSTRAINT services_name_key UNIQUE (name);
|
|
|
|
|
|
--
|
|
-- Name: services services_pkey; Type: CONSTRAINT; Schema: public; Owner: freecodecamp
|
|
--
|
|
|
|
ALTER TABLE ONLY public.services
|
|
ADD CONSTRAINT services_pkey PRIMARY KEY (service_id);
|
|
|
|
|
|
--
|
|
-- Name: appointments appointments_customer_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: freecodecamp
|
|
--
|
|
|
|
ALTER TABLE ONLY public.appointments
|
|
ADD CONSTRAINT appointments_customer_id_fkey FOREIGN KEY (customer_id) REFERENCES public.customers(customer_id);
|
|
|
|
|
|
--
|
|
-- Name: appointments appointments_service_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: freecodecamp
|
|
--
|
|
|
|
ALTER TABLE ONLY public.appointments
|
|
ADD CONSTRAINT appointments_service_id_fkey FOREIGN KEY (service_id) REFERENCES public.services(service_id);
|
|
|
|
|
|
--
|
|
-- PostgreSQL database dump complete
|
|
--
|
|
|