mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-26 16:26:24 +01:00
15 lines
360 B
SQL
15 lines
360 B
SQL
CREATE TABLE sm (
|
|
usec bigint NOT NULL,
|
|
pid text NOT NULL,
|
|
node text NOT NULL,
|
|
username text NOT NULL,
|
|
server_host text NOT NULL,
|
|
resource text NOT NULL,
|
|
priority text NOT NULL,
|
|
info text NOT NULL,
|
|
PRIMARY KEY (usec, pid)
|
|
);
|
|
|
|
CREATE INDEX i_sm_node ON sm (node);
|
|
CREATE INDEX i_sm_sh_username ON sm (server_host, username);
|