PGDMP % 4 { pizza 14.6 (Homebrew) 14.6 (Homebrew)
0 0 ENCODING ENCODING SET client_encoding = 'UTF8';
false 0 0
STDSTRINGS
STDSTRINGS ( SET standard_conforming_strings = 'on';
false 0 0
SEARCHPATH
SEARCHPATH 8 SELECT pg_catalog.set_config('search_path', '', false);
false 1262 513003 pizza DATABASE P CREATE DATABASE pizza WITH TEMPLATE = template0 ENCODING = 'UTF8' LOCALE = 'C';
DROP DATABASE pizza;
wichert.akkerman false � 1259 513004 pizza TABLE U CREATE TABLE public.pizza (
pizza_id integer NOT NULL,
name text NOT NULL
);
DROP TABLE public.pizza;
public heap wichert.akkerman false � 1259 513009 pizza_pizza_id_seq SEQUENCE � ALTER TABLE public.pizza ALTER COLUMN pizza_id ADD GENERATED ALWAYS AS IDENTITY (
SEQUENCE NAME public.pizza_pizza_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
public wichert.akkerman false 209 � 1259 513010
pizza_topping TABLE f CREATE TABLE public.pizza_topping (
pizza_id integer NOT NULL,
topping_id integer NOT NULL
);
! DROP TABLE public.pizza_topping;
public heap wichert.akkerman false � 1259 513013 topping TABLE Y CREATE TABLE public.topping (
topping_id integer NOT NULL,
name text NOT NULL
);
DROP TABLE public.topping;
public heap wichert.akkerman false � 1259 513018 topping_topping_id_seq SEQUENCE � ALTER TABLE public.topping ALTER COLUMN topping_id ADD GENERATED ALWAYS AS IDENTITY (
SEQUENCE NAME public.topping_topping_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
public wichert.akkerman false 212 0 513004 pizza
TABLE DATA / COPY public.pizza (pizza_id, name) FROM stdin;
public wichert.akkerman false 209 � 0 513010
pizza_topping
TABLE DATA = COPY public.pizza_topping (pizza_id, topping_id) FROM stdin;
public wichert.akkerman false 211 ! 0 513013 topping
TABLE DATA 3 COPY public.topping (topping_id, name) FROM stdin;
public wichert.akkerman false 212 a 0 0 pizza_pizza_id_seq SEQUENCE SET @ SELECT pg_catalog.setval('public.pizza_pizza_id_seq', 5, true);
public wichert.akkerman false 210 0 0 topping_topping_id_seq SEQUENCE SET D SELECT pg_catalog.setval('public.topping_topping_id_seq', 6, true);
public wichert.akkerman false 213 t
2606 513020 pizza pizza_pkey
CONSTRAINT T ALTER TABLE ONLY public.pizza
ADD CONSTRAINT pizza_pkey PRIMARY KEY (pizza_id);
: ALTER TABLE ONLY public.pizza DROP CONSTRAINT pizza_pkey;
public wichert.akkerman false 209 v
2606 513022 pizza_topping pizza_topping_pkey
CONSTRAINT p ALTER TABLE ONLY public.pizza_topping
ADD CONSTRAINT pizza_topping_pkey PRIMARY KEY (pizza_id, topping_id);
J ALTER TABLE ONLY public.pizza_topping DROP CONSTRAINT pizza_topping_pkey;
public wichert.akkerman false 211 211 x
2606 513024 topping topping_pkey
CONSTRAINT Z ALTER TABLE ONLY public.topping
ADD CONSTRAINT topping_pkey PRIMARY KEY (topping_id);
>