-- -- PostgreSQL database dump -- -- Dumped from database version 12.7 (Ubuntu 12.7-0ubuntu0.20.10.1) -- Dumped by pg_dump version 13.3 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: members; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.members ( member bigint NOT NULL, joincount bigint, mistakes bigint DEFAULT 0 NOT NULL, guild bigint ); ALTER TABLE public.members OWNER TO postgres; -- -- Name: members user_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.members ADD CONSTRAINT user_pkey PRIMARY KEY (member); -- -- Name: members members_guild_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.members ADD CONSTRAINT members_guild_fkey FOREIGN KEY (guild) REFERENCES public.data(guild) NOT VALID; -- -- PostgreSQL database dump complete --