-- -- PostgreSQL database dump -- -- Dumped from database version 14.3 -- Dumped by pg_dump version 14.3 SET statement_timeout = 0; SET lock_timeout = 0; SET idle_in_transaction_session_timeout = 0; SET client_encoding = 'SQL_ASCII'; 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: revocatio_test; Type: TABLE; Schema: public; Owner: michael -- CREATE TABLE public.revocatio_test ( id integer NOT NULL, name text ); ALTER TABLE public.revocatio_test OWNER TO michael; -- -- Name: revocatio_test_id_seq; Type: SEQUENCE; Schema: public; Owner: michael -- CREATE SEQUENCE public.revocatio_test_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.revocatio_test_id_seq OWNER TO michael; -- -- Name: revocatio_test_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: michael -- ALTER SEQUENCE public.revocatio_test_id_seq OWNED BY public.revocatio_test.id; -- -- Name: revocatio_test id; Type: DEFAULT; Schema: public; Owner: michael -- ALTER TABLE ONLY public.revocatio_test ALTER COLUMN id SET DEFAULT nextval('public.revocatio_test_id_seq'::regclass); -- -- Data for Name: revocatio_test; Type: TABLE DATA; Schema: public; Owner: michael -- COPY public.revocatio_test (id, name) FROM stdin; 1 abc 2 def 3 ghi 4 jkl \. -- -- Name: revocatio_test_id_seq; Type: SEQUENCE SET; Schema: public; Owner: michael -- SELECT pg_catalog.setval('public.revocatio_test_id_seq', 4, true); -- -- Name: revocatio_test revocatio_test_pkey; Type: CONSTRAINT; Schema: public; Owner: michael -- ALTER TABLE ONLY public.revocatio_test ADD CONSTRAINT revocatio_test_pkey PRIMARY KEY (id); -- -- PostgreSQL database dump complete --