-- -- PostgreSQL database dump -- \restrict b9avj9S7ECUvDnNKr6cLCnAOE5wda1QazNR1lr9pRJRZdr9rBPGUpygtbrcRpQq -- Dumped from database version 18.0 (Postgres.app) -- Dumped by pg_dump version 18.0 (Postgres.app) SET statement_timeout = 0; SET lock_timeout = 0; SET idle_in_transaction_session_timeout = 0; SET transaction_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: schema_migrations; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public.schema_migrations ( filename text NOT NULL ); -- -- Name: teams; Type: TABLE; Schema: public; Owner: - -- CREATE TABLE public.teams ( id text NOT NULL, name text NOT NULL, sparklebot_id text NOT NULL, active boolean DEFAULT true NOT NULL, access_token text NOT NULL, created_at timestamp with time zone NOT NULL, updated_at timestamp with time zone NOT NULL ); -- -- Name: schema_migrations schema_migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public.schema_migrations ADD CONSTRAINT schema_migrations_pkey PRIMARY KEY (filename); -- -- Name: teams teams_pkey; Type: CONSTRAINT; Schema: public; Owner: - -- ALTER TABLE ONLY public.teams ADD CONSTRAINT teams_pkey PRIMARY KEY (id); -- -- PostgreSQL database dump complete -- \unrestrict b9avj9S7ECUvDnNKr6cLCnAOE5wda1QazNR1lr9pRJRZdr9rBPGUpygtbrcRpQq SET search_path TO "$user", public; INSERT INTO schema_migrations (filename) VALUES ('20251019150215_create_teams.rb');