From a7d269253f99d92f7307f13b906bea46c322a59f Mon Sep 17 00:00:00 2001 From: Aleksander Machniak <alec@alec.pl> Date: Tue, 12 May 2015 03:10:10 -0400 Subject: [PATCH] Workaround possible issue where some keys were ignored when deleting cached entries by key name prefix and keys index is in inconsistent state (does not contain all keys) --- SQL/mysql.initial.sql | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/SQL/mysql.initial.sql b/SQL/mysql.initial.sql index 4e4833a..721c839 100644 --- a/SQL/mysql.initial.sql +++ b/SQL/mysql.initial.sql @@ -25,7 +25,7 @@ `created` datetime NOT NULL DEFAULT '1000-01-01 00:00:00', `last_login` datetime DEFAULT NULL, `language` varchar(5), - `preferences` text, + `preferences` longtext, PRIMARY KEY(`user_id`), UNIQUE `username` (`username`, `mail_host`) ) /*!40000 ENGINE=INNODB */ /*!40101 CHARACTER SET utf8 COLLATE utf8_general_ci */; @@ -162,7 +162,7 @@ `email` varchar(128) NOT NULL, `reply-to` varchar(128) NOT NULL DEFAULT '', `bcc` varchar(128) NOT NULL DEFAULT '', - `signature` text, + `signature` longtext, `html_signature` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY(`identity_id`), CONSTRAINT `user_id_fk_identities` FOREIGN KEY (`user_id`) @@ -209,4 +209,4 @@ /*!40014 SET FOREIGN_KEY_CHECKS=1 */; -INSERT INTO system (name, value) VALUES ('roundcube-version', '2013061000'); +INSERT INTO system (name, value) VALUES ('roundcube-version', '2015030800'); -- Gitblit v1.9.1