xmpp.chapril.org-ejabberd/sql/sqlite/mod_announce.sql

9 lines
229 B
MySQL
Raw Normal View History

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