-- -- PostgreSQL database dump -- -- Dumped from database version 10.16 -- Dumped by pg_dump version 10.16 -- Started on 2021-04-10 22:53:56 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_with_oids = false; -- -- TOC entry 203 (class 1259 OID 16487) -- Name: users; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.users ( id integer NOT NULL, password character varying(100) NOT NULL, username character varying NOT NULL, role character varying NOT NULL ); ALTER TABLE public.users OWNER TO postgres; -- -- TOC entry 204 (class 1259 OID 16497) -- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- ALTER TABLE public.users ALTER COLUMN id ADD GENERATED ALWAYS AS IDENTITY ( SEQUENCE NAME public.users_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1 ); -- -- TOC entry 2814 (class 0 OID 16487) -- Dependencies: 203 -- Data for Name: users; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.users (id, password, username, role) FROM stdin; 4 $2y$10$liQbaSxcPykR4516JVQ/G.pDYu0niSOF7q/IhJlOrUqXsHwIwp/p2 admin editor \. -- -- TOC entry 2821 (class 0 OID 0) -- Dependencies: 204 -- Name: users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.users_id_seq', 4, true); -- -- TOC entry 2690 (class 2606 OID 16496) -- Name: users username_unique; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.users ADD CONSTRAINT username_unique UNIQUE (username); -- -- TOC entry 2692 (class 2606 OID 16491) -- Name: users users_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.users ADD CONSTRAINT users_pkey PRIMARY KEY (id); -- Completed on 2021-04-10 22:53:56 -- -- PostgreSQL database dump complete --