25
1
mirror of https://github.com/processone/ejabberd.git synced 2024-11-22 16:20:52 +01:00
xmpp.chapril.org-ejabberd/sql/sqlite/mod_carboncopy.sql

11 lines
343 B
MySQL
Raw Permalink Normal View History

2018-07-19 09:24:19 +02:00
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);