mirror of
https://github.com/processone/ejabberd.git
synced 2025-01-03 18:02:28 +01:00
Fix sqlite schema
This commit is contained in:
parent
f86055378d
commit
b88fda9494
@ -285,7 +285,7 @@ CREATE TABLE muc_room (
|
||||
);
|
||||
|
||||
CREATE UNIQUE INDEX i_muc_room_name_host ON muc_room (name, host);
|
||||
CREATE INDEX i_muc_room_host_created_at ON muc_room USING btree (host, created_at);
|
||||
CREATE INDEX i_muc_room_host_created_at ON muc_room (host, created_at);
|
||||
|
||||
CREATE TABLE muc_registered (
|
||||
jid text NOT NULL,
|
||||
|
@ -260,7 +260,7 @@ CREATE TABLE muc_room (
|
||||
);
|
||||
|
||||
CREATE UNIQUE INDEX i_muc_room_name_host ON muc_room (name, host);
|
||||
CREATE INDEX i_muc_room_host_created_at ON muc_room USING btree (host, created_at);
|
||||
CREATE INDEX i_muc_room_host_created_at ON muc_room (host, created_at);
|
||||
|
||||
CREATE TABLE muc_registered (
|
||||
jid text NOT NULL,
|
||||
|
Loading…
Reference in New Issue
Block a user