aboutsummaryrefslogtreecommitdiff
path: root/sql/mysql.new.sql
diff options
context:
space:
mode:
authorAlexey Shchepin <alexey@process-one.net>2021-12-14 09:54:00 +0300
committerAlexey Shchepin <alexey@process-one.net>2021-12-14 09:55:55 +0300
commit8b7da70b57096d5c88c4128877e8802a12057bd4 (patch)
tree18dbe9ff249e0bc3d603f7a026e60a4542196e2c /sql/mysql.new.sql
parentUpdate stun and esip dependencies (diff)
Handle user removal in mod_muc
Diffstat (limited to '')
-rw-r--r--sql/mysql.new.sql1
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/mysql.new.sql b/sql/mysql.new.sql
index 01aeffbc5..c4e021abf 100644
--- a/sql/mysql.new.sql
+++ b/sql/mysql.new.sql
@@ -347,6 +347,7 @@ CREATE TABLE muc_room_subscribers (
) ENGINE=InnoDB CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
CREATE INDEX i_muc_room_subscribers_host_jid USING BTREE ON muc_room_subscribers(host, jid);
+CREATE INDEX i_muc_room_subscribers_jid USING BTREE ON muc_room_subscribers(jid);
CREATE TABLE motd (
username varchar(191) NOT NULL,