✨ Recognize teammates in slack by awarding them sparkles!
1--
2-- PostgreSQL database dump
3--
4
5\restrict b9avj9S7ECUvDnNKr6cLCnAOE5wda1QazNR1lr9pRJRZdr9rBPGUpygtbrcRpQq
6
7-- Dumped from database version 18.0 (Postgres.app)
8-- Dumped by pg_dump version 18.0 (Postgres.app)
9
10SET statement_timeout = 0;
11SET lock_timeout = 0;
12SET idle_in_transaction_session_timeout = 0;
13SET transaction_timeout = 0;
14SET client_encoding = 'UTF8';
15SET standard_conforming_strings = on;
16SELECT pg_catalog.set_config('search_path', '', false);
17SET check_function_bodies = false;
18SET xmloption = content;
19SET client_min_messages = warning;
20SET row_security = off;
21
22SET default_tablespace = '';
23
24SET default_table_access_method = heap;
25
26--
27-- Name: schema_migrations; Type: TABLE; Schema: public; Owner: -
28--
29
30CREATE TABLE public.schema_migrations (
31 filename text NOT NULL
32);
33
34
35--
36-- Name: teams; Type: TABLE; Schema: public; Owner: -
37--
38
39CREATE TABLE public.teams (
40 id text NOT NULL,
41 name text NOT NULL,
42 sparklebot_id text NOT NULL,
43 active boolean DEFAULT true NOT NULL,
44 access_token text NOT NULL,
45 created_at timestamp with time zone NOT NULL,
46 updated_at timestamp with time zone NOT NULL
47);
48
49
50--
51-- Name: schema_migrations schema_migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: -
52--
53
54ALTER TABLE ONLY public.schema_migrations
55 ADD CONSTRAINT schema_migrations_pkey PRIMARY KEY (filename);
56
57
58--
59-- Name: teams teams_pkey; Type: CONSTRAINT; Schema: public; Owner: -
60--
61
62ALTER TABLE ONLY public.teams
63 ADD CONSTRAINT teams_pkey PRIMARY KEY (id);
64
65
66--
67-- PostgreSQL database dump complete
68--
69
70\unrestrict b9avj9S7ECUvDnNKr6cLCnAOE5wda1QazNR1lr9pRJRZdr9rBPGUpygtbrcRpQq
71
72SET search_path TO "$user", public;
73
74INSERT INTO schema_migrations (filename) VALUES
75('20251019150215_create_teams.rb');