1- --
2- -- PostgreSQL database dump
3- --
41
5- -- Dumped from database version 15.12 (Homebrew)
6- -- Dumped by pg_dump version 15.12 (Homebrew)
72
83SET statement_timeout = 0 ;
94SET lock_timeout = 0 ;
@@ -16,16 +11,10 @@ SET xmloption = content;
1611SET client_min_messages = warning;
1712SET row_security = off;
1813
19- --
20- -- Name: smp_server; Type: SCHEMA; Schema: -; Owner: -
21- --
2214
2315CREATE SCHEMA smp_server ;
2416
2517
26- --
27- -- Name: migrations; Type: TABLE; Schema: smp_server; Owner: -
28- --
2918
3019CREATE TABLE smp_server .migrations (
3120 name text NOT NULL ,
@@ -34,9 +23,6 @@ CREATE TABLE smp_server.migrations (
3423);
3524
3625
37- --
38- -- Name: msg_queues; Type: TABLE; Schema: smp_server; Owner: -
39- --
4026
4127CREATE TABLE smp_server .msg_queues (
4228 recipient_id bytea NOT NULL ,
@@ -57,51 +43,30 @@ CREATE TABLE smp_server.msg_queues (
5743);
5844
5945
60- --
61- -- Name: migrations migrations_pkey; Type: CONSTRAINT; Schema: smp_server; Owner: -
62- --
6346
6447ALTER TABLE ONLY smp_server .migrations
6548 ADD CONSTRAINT migrations_pkey PRIMARY KEY (name);
6649
6750
68- --
69- -- Name: msg_queues msg_queues_pkey; Type: CONSTRAINT; Schema: smp_server; Owner: -
70- --
7151
7252ALTER TABLE ONLY smp_server .msg_queues
7353 ADD CONSTRAINT msg_queues_pkey PRIMARY KEY (recipient_id);
7454
7555
76- --
77- -- Name: idx_msg_queues_link_id; Type: INDEX; Schema: smp_server; Owner: -
78- --
7956
8057CREATE UNIQUE INDEX idx_msg_queues_link_id ON smp_server .msg_queues USING btree (link_id);
8158
8259
83- --
84- -- Name: idx_msg_queues_notifier_id; Type: INDEX; Schema: smp_server; Owner: -
85- --
8660
8761CREATE UNIQUE INDEX idx_msg_queues_notifier_id ON smp_server .msg_queues USING btree (notifier_id);
8862
8963
90- --
91- -- Name: idx_msg_queues_sender_id; Type: INDEX; Schema: smp_server; Owner: -
92- --
9364
9465CREATE UNIQUE INDEX idx_msg_queues_sender_id ON smp_server .msg_queues USING btree (sender_id);
9566
9667
97- --
98- -- Name: idx_msg_queues_updated_at; Type: INDEX; Schema: smp_server; Owner: -
99- --
10068
10169CREATE INDEX idx_msg_queues_updated_at ON smp_server .msg_queues USING btree (deleted_at, updated_at);
10270
10371
104- --
105- -- PostgreSQL database dump complete
106- --
10772
0 commit comments