Use MEDIUMTEXT type for muc_room.opts in MySQL schema

This commit is contained in:
Juan Pablo Carlino 2016-03-29 15:58:15 -03:00 committed by Christophe Romain
parent 07196b6c62
commit 671bc4e573
1 changed files with 1 additions and 1 deletions

View File

@ -275,7 +275,7 @@ CREATE UNIQUE INDEX i_pubsub_subscription_opt ON pubsub_subscription_opt(subid(3
CREATE TABLE muc_room (
name text NOT NULL,
host text NOT NULL,
opts text NOT NULL,
opts mediumtext NOT NULL,
created_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;