From 019408dc6dc9596adcd976da9d50ab32e552d05e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20Schw=C3=B6rer?= Date: Tue, 21 Apr 2020 10:45:03 +0200 Subject: [PATCH] use LONGTEXT for content column --- web/api/schema.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/api/schema.sql b/web/api/schema.sql index 6918b37..5854209 100644 --- a/web/api/schema.sql +++ b/web/api/schema.sql @@ -27,7 +27,7 @@ CREATE TABLE `messages` `ack` TINYINT(1) NOT NULL DEFAULT 0, `title` VARCHAR(256) NOT NULL, - `content` VARCHAR(12288) NULL, + `content` LONGTEXT NULL, `priority` INT(11) NOT NULL, `sendtime` BIGINT UNSIGNED NOT NULL,