Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mod_announce.sql « mysql « sql - github.com/processone/ejabberd.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 94ddd9e95e9f35fa59b825fdd7bfcb925fc99599 (plain)
1
2
3
4
5
6
7
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;