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

8 lines
273 B
MySQL
Raw Normal View History

2018-07-19 09:24:19 +02:00
CREATE TABLE motd (
username varchar(191) NOT NULL,
server_host text NOT NULL,
xml text,
created_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (server_host(191), username)
) ENGINE=InnoDB CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;