-- -- PostgreSQL database dump -- -- Dumped from database version 10.16 -- Dumped by pg_dump version 10.16 -- Started on 2021-04-24 21:33:05 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_with_oids = false; -- -- TOC entry 205 (class 1259 OID 24745) -- Name: changes; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.changes ( id integer NOT NULL, wordform_id integer NOT NULL, message character varying NOT NULL ); ALTER TABLE public.changes OWNER TO postgres; -- -- TOC entry 206 (class 1259 OID 24753) -- Name: changes_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.changes ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY ( SEQUENCE NAME public.changes_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- TOC entry 2818 (class 0 OID 24745) -- Dependencies: 205 -- Data for Name: changes; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.changes (id, wordform_id, message) FROM stdin; \. -- -- TOC entry 2825 (class 0 OID 0) -- Dependencies: 206 -- Name: changes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.changes_id_seq', 1, true); -- -- TOC entry 2696 (class 2606 OID 24752) -- Name: changes changes_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.changes ADD CONSTRAINT changes_pkey PRIMARY KEY (id); -- Completed on 2021-04-24 21:33:05 -- -- PostgreSQL database dump complete --