From 2f88b3653e14394e404251e8bba19757ee27146c Mon Sep 17 00:00:00 2001 From: Jean-Louis Huynen Date: Thu, 28 Mar 2019 16:06:50 +0100 Subject: [PATCH] table structure --- passivessl.sql | 66 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 passivessl.sql diff --git a/passivessl.sql b/passivessl.sql new file mode 100644 index 0000000..0068ae2 --- /dev/null +++ b/passivessl.sql @@ -0,0 +1,66 @@ +-- +-- PostgreSQL database dump +-- + +-- Dumped from database version 10.6 (Ubuntu 10.6-0ubuntu0.18.04.1) +-- Dumped by pg_dump version 10.6 (Ubuntu 10.6-0ubuntu0.18.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 client_min_messages = warning; +SET row_security = off; + +SET default_tablespace = ''; + +SET default_with_oids = false; + +-- +-- Name: sessions; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.sessions ( + data jsonb, + id integer NOT NULL +); + + +ALTER TABLE public.sessions OWNER TO postgres; + +-- +-- Name: sessions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.sessions_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.sessions_id_seq OWNER TO postgres; + +-- +-- Name: sessions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.sessions_id_seq OWNED BY public.sessions.id; + + +-- +-- Name: sessions id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.sessions ALTER COLUMN id SET DEFAULT nextval('public.sessions_id_seq'::regclass); + + +-- +-- PostgreSQL database dump complete +-- +