aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorpitchum <pitchum@users.noreply.github.com>2021-08-01 09:53:07 +0200
committerpitchum <pitchum@users.noreply.github.com>2021-08-01 09:53:07 +0200
commit76c49f314f3c8422ed3f60dc5b5f8ce14340b4cb (patch)
tree4748f54d6a5dea5e7c3cbdbed8f281ee2ebf47e7 /sql
parentUse the most specific tag for ejabberd commands with several ones (diff)
Add missing SQL migration for table push_session
Diffstat (limited to 'sql')
-rw-r--r--sql/pg.new.sql6
1 files changed, 6 insertions, 0 deletions
diff --git a/sql/pg.new.sql b/sql/pg.new.sql
index 8a35ec6c9..b3473a1a0 100644
--- a/sql/pg.new.sql
+++ b/sql/pg.new.sql
@@ -156,6 +156,12 @@
-- CREATE INDEX i_sm_sh_username ON sm USING btree (server_host, username);
-- ALTER TABLE sm ALTER COLUMN server_host DROP DEFAULT;
+-- ALTER TABLE push_session ADD COLUMN server_host text NOT NULL DEFAULT '<HOST>';
+-- DROP INDEX i_push_usn;
+-- DROP INDEX i_push_ut;
+-- ALTER TABLE push_session ADD PRIMARY KEY (server_host, username, timestamp);
+-- CREATE UNIQUE INDEX i_push_session_susn ON push_session USING btree (server_host, username, service, node);
+
CREATE TABLE users (
username text NOT NULL,