summaryrefslogtreecommitdiff
path: root/sql/mysql.sql
diff options
context:
space:
mode:
authorEvgeniy Khramtsov <ekhramtsov@process-one.net>2018-06-20 12:27:44 +0300
committerEvgeniy Khramtsov <ekhramtsov@process-one.net>2018-06-20 12:27:44 +0300
commit3a5d2dbed8f089b112eba7998e2ad0d2508f01cb (patch)
treefb2e9ab4348bcf691d673879e00dfcb17eea9dd0 /sql/mysql.sql
parentOmit summary form for push tests (diff)
Move mod_irc to ejabberd-contrib
Diffstat (limited to 'sql/mysql.sql')
-rw-r--r--sql/mysql.sql9
1 files changed, 0 insertions, 9 deletions
diff --git a/sql/mysql.sql b/sql/mysql.sql
index 1d7e4c4e..7894fa5b 100644
--- a/sql/mysql.sql
+++ b/sql/mysql.sql
@@ -318,15 +318,6 @@ CREATE TABLE muc_room_subscribers (
CREATE INDEX i_muc_room_subscribers_host_jid USING BTREE ON muc_room_subscribers(host, jid);
-CREATE TABLE irc_custom (
- jid text NOT NULL,
- host text NOT NULL,
- data text NOT NULL,
- created_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
-) ENGINE=InnoDB CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
-
-CREATE UNIQUE INDEX i_irc_custom_jid_host USING BTREE ON irc_custom(jid(75), host(75));
-
CREATE TABLE motd (
username varchar(191) PRIMARY KEY,
xml text,