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: __diesel_schema_migrations; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public.__diesel_schema_migrations ( version character varying(50) NOT NULL, run_on timestamp without time zone DEFAULT CURRENT_TIMESTAMP NOT NULL ); -- -- Name: diesel_users; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public.diesel_users ( id text NOT NULL, email text NOT NULL, created_at timestamp with time zone DEFAULT now() NOT NULL ); -- -- Name: __diesel_schema_migrations __diesel_schema_migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public.__diesel_schema_migrations ADD CONSTRAINT __diesel_schema_migrations_pkey PRIMARY KEY (version); -- -- Name: diesel_users diesel_users_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public.diesel_users ADD CONSTRAINT diesel_users_pkey PRIMARY KEY (id); -- -- PostgreSQL database dump complete --