From 0891b1d2ec6b576000c0fe9150257d4f03c53536 Mon Sep 17 00:00:00 2001 From: alecpl <alec@alec.pl> Date: Mon, 27 Jun 2011 12:27:11 -0400 Subject: [PATCH] - Fix handling of untagged responses in LIST/LSUB response parser --- SQL/mysql.update.sql | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/SQL/mysql.update.sql b/SQL/mysql.update.sql index d30f037..e8fafae 100644 --- a/SQL/mysql.update.sql +++ b/SQL/mysql.update.sql @@ -133,8 +133,11 @@ TRUNCATE TABLE `messages`; --- Updates from version 0.5.* +-- Updates from version 0.5.2 ALTER TABLE `contacts` ADD `words` TEXT NULL AFTER `vcard`; +ALTER TABLE `contacts` CHANGE `vcard` `vcard` LONGTEXT /*!40101 CHARACTER SET utf8 */ NULL DEFAULT NULL; ALTER TABLE `contactgroupmembers` ADD INDEX `contactgroupmembers_contact_index` (`contact_id`); - \ No newline at end of file + +TRUNCATE TABLE `messages`; +TRUNCATE TABLE `cache`; -- Gitblit v1.9.1