mirror of
https://github.com/processone/ejabberd
synced 2025-10-04 02:09:33 +02:00
7 lines
273 B
SQL
7 lines
273 B
SQL
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;
|