1
0
Fork 0
mirror of https://github.com/processone/ejabberd synced 2025-10-03 09:49:18 +02:00
ejabberd/sql/sqlite/mod_carboncopy.sql
2018-07-19 10:24:19 +03:00

10 lines
343 B
SQL

CREATE TABLE carboncopy (
username text NOT NULL,
server_host text NOT NULL,
resource text NOT NULL,
namespace text NOT NULL,
node text NOT NULL
);
CREATE UNIQUE INDEX i_server_host_username_resource ON carboncopy (server_host, username, resource);
CREATE INDEX i_carboncopy_sh_user ON carboncopy (server_host, username);