-- -- PostgreSQL database dump -- -- Dumped from database version 13.4 -- Dumped by pg_dump version 13.4 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: acls; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.acls ( id uuid NOT NULL, role character varying(254) NOT NULL, path character varying(254) NOT NULL, permission character varying(254) NOT NULL, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL ); ALTER TABLE public.acls OWNER TO postgres; -- -- Name: migration_versions; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.migration_versions ( id integer NOT NULL, version character varying(17) NOT NULL ); ALTER TABLE public.migration_versions OWNER TO postgres; -- -- Name: migration_versions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.migration_versions_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.migration_versions_id_seq OWNER TO postgres; -- -- Name: migration_versions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.migration_versions_id_seq OWNED BY public.migration_versions.id; -- -- Name: users; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.users ( id uuid NOT NULL, username character varying(254) NOT NULL, email character varying(254), password_digest character varying(254) NOT NULL, roles character varying(254)[] NOT NULL, created_at timestamp without time zone NOT NULL, updated_at timestamp without time zone NOT NULL ); ALTER TABLE public.users OWNER TO postgres; -- -- Name: migration_versions id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.migration_versions ALTER COLUMN id SET DEFAULT nextval('public.migration_versions_id_seq'::regclass); -- -- Name: acls acls_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.acls ADD CONSTRAINT acls_pkey PRIMARY KEY (id); -- -- Name: migration_versions migration_versions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.migration_versions ADD CONSTRAINT migration_versions_pkey PRIMARY KEY (id); -- -- Name: users users_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.users ADD CONSTRAINT users_pkey PRIMARY KEY (id); -- -- Name: acls_role_path_idx; Type: INDEX; Schema: public; Owner: postgres -- CREATE UNIQUE INDEX acls_role_path_idx ON public.acls USING btree (role, path); -- -- Name: users_username_idx; Type: INDEX; Schema: public; Owner: postgres -- CREATE UNIQUE INDEX users_username_idx ON public.users USING btree (username); -- -- PostgreSQL database dump complete --