Skip to content

Instantly share code, notes, and snippets.

@phantomjinx
Created February 20, 2020 13:15
Show Gist options
  • Save phantomjinx/c1c9225a81f93899997ac51cd1331317 to your computer and use it in GitHub Desktop.
Save phantomjinx/c1c9225a81f93899997ac51cd1331317 to your computer and use it in GitHub Desktop.
--
-- PostgreSQL database dump
--
-- Dumped from database version 12.2
-- Dumped by pg_dump version 12.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;
SET default_tablespace = '';
SET default_table_access_method = heap;
--
-- Name: config; Type: TABLE; Schema: public; Owner: syndesis
--
CREATE TABLE public.config (
name character varying NOT NULL,
value character varying
);
ALTER TABLE public.config OWNER TO syndesis;
--
-- Name: filestore; Type: TABLE; Schema: public; Owner: syndesis
--
CREATE TABLE public.filestore (
path character varying NOT NULL COLLATE pg_catalog."C",
data oid
);
ALTER TABLE public.filestore OWNER TO syndesis;
--
-- Name: jsondb; Type: TABLE; Schema: public; Owner: syndesis
--
CREATE TABLE public.jsondb (
path character varying NOT NULL COLLATE pg_catalog."C",
value character varying,
ovalue character varying,
idx character varying COLLATE pg_catalog."C"
);
ALTER TABLE public.jsondb OWNER TO syndesis;
--
-- Data for Name: config; Type: TABLE DATA; Schema: public; Owner: syndesis
--
COPY public.config (name, value) FROM stdin;
model_schema_version 32
\.
...
...
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment