-- -- PostgreSQL database dump -- -- Dumped from database version 14.12 (Ubuntu 14.12-1.pgdg20.04+1) -- Dumped by pg_dump version 16.3 (Ubuntu 16.3-1.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; -- -- Name: public; Type: SCHEMA; Schema: -; Owner: postgres -- ALTER SCHEMA public OWNER TO postgres; SET default_tablespace = ''; SET default_table_access_method = heap; -- -- Name: jobs; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.jobs ( type character varying DEFAULT 'process'::character varying NOT NULL, identifier character varying NOT NULL, process_id character varying NOT NULL, job_start_datetime timestamp without time zone, job_end_datetime timestamp without time zone, status character varying NOT NULL, location character varying, mimetype character varying, message character varying, progress integer NOT NULL ); ALTER TABLE public.jobs OWNER TO postgres; -- -- Name: jobs jobs_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.jobs ADD CONSTRAINT jobs_pkey PRIMARY KEY (identifier); -- -- Name: SCHEMA public; Type: ACL; Schema: -; Owner: postgres -- REVOKE USAGE ON SCHEMA public FROM PUBLIC; GRANT ALL ON SCHEMA public TO PUBLIC; -- -- PostgreSQL database dump complete --