mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-22 16:20:52 +01:00
9 lines
229 B
SQL
9 lines
229 B
SQL
CREATE TABLE motd (
|
|
username text NOT NULL,
|
|
server_host text NOT NULL,
|
|
xml text,
|
|
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
|
|
);
|
|
|
|
CREATE UNIQUE INDEX i_motd_sh_username ON motd (server_host, username);
|