aboutsummaryrefslogtreecommitdiff
path: root/sql/mysql.sql
diff options
context:
space:
mode:
authorJuan Pablo Carlino <jpcarlino@gmail.com>2016-03-29 15:58:15 -0300
committerChristophe Romain <christophe.romain@process-one.net>2016-05-02 15:06:40 +0200
commit671bc4e5737781f9749ca45e2d4fff277bdeae24 (patch)
treea2b7716e8676fb2fd11999dcdca4a9dc31326cef /sql/mysql.sql
parentFix sender in case of explicit pep subscriptions (diff)
Use MEDIUMTEXT type for muc_room.opts in MySQL schema
Diffstat (limited to '')
-rw-r--r--sql/mysql.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/mysql.sql b/sql/mysql.sql
index b7a86d0e6..5150fc45b 100644
--- a/sql/mysql.sql
+++ b/sql/mysql.sql
@@ -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;