mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-22 16:20:52 +01:00
10 lines
277 B
MySQL
10 lines
277 B
MySQL
|
CREATE TABLE spool (
|
||
|
username text NOT NULL,
|
||
|
server_host text NOT NULL,
|
||
|
xml text NOT NULL,
|
||
|
seq INTEGER PRIMARY KEY AUTOINCREMENT,
|
||
|
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
|
||
|
);
|
||
|
|
||
|
CREATE INDEX i_spool_sh_username ON spool (server_host, username);
|