From d4ac0fbf8c8c28b5c1e7b26d9a7d6d2368490ac0 Mon Sep 17 00:00:00 2001 From: Pierre HUBERT Date: Tue, 3 Jul 2018 11:18:37 +0200 Subject: [PATCH] Fix compatibility issue with MariaDB --- db_struct.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db_struct.sql b/db_struct.sql index f8260cc..d00b9b3 100644 --- a/db_struct.sql +++ b/db_struct.sql @@ -137,7 +137,7 @@ CREATE TABLE `comunic_mails_queue` ( `time_insert` int(11) DEFAULT NULL, `userID` int(11) DEFAULT NULL, `template` varchar(45) DEFAULT NULL, - `data` json DEFAULT NULL, + `data` text DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1;