From c8fb2b778491036db4c1b5f4fcc3b9a3c21efcc1 Mon Sep 17 00:00:00 2001 From: thomascube <thomas@roundcube.net> Date: Sat, 07 Jun 2008 09:34:41 -0400 Subject: [PATCH] Update UPGRADNG instructions + add SVN revision to version string (if available) --- SQL/mysql.update.sql | 30 +++++++++++++++++++++++------- 1 files changed, 23 insertions(+), 7 deletions(-) diff --git a/SQL/mysql.update.sql b/SQL/mysql.update.sql index b16f255..2a9603f 100644 --- a/SQL/mysql.update.sql +++ b/SQL/mysql.update.sql @@ -1,11 +1,27 @@ -- RoundCube Webmail update script for MySQL databases --- Updates from version 0.1-beta and 0.1-beta2 +-- Updates from version 0.1-stable to 0.1.1 + +TRUNCATE TABLE `messages`; ALTER TABLE `messages` - DROP `body`, - DROP INDEX `cache_key`, - ADD `structure` TEXT, - ADD UNIQUE `uniqueness` (`cache_key`, `uid`); + DROP INDEX `idx`, + DROP INDEX `uid`; -ALTER TABLE 'identities' - ADD 'html_signature' tinyint(1) default 0 NOT NULL; +ALTER TABLE `cache` + DROP INDEX `cache_key`, + DROP INDEX `session_id`, + ADD INDEX `user_cache_index` (`user_id`,`cache_key`); + +ALTER TABLE `users` + ADD INDEX `username_index` (`username`), + ADD INDEX `alias_index` (`alias`); + +-- Updates from version 0.1.1 + +ALTER TABLE `identities` + MODIFY `signature` text NOT NULL DEFAULT '', + MODIFY `bcc` varchar(128) NOT NULL DEFAULT '', + MODIFY `reply-to` varchar(128) NOT NULL DEFAULT '', + MODIFY `organization` varchar(128) NOT NULL DEFAULT '', + MODIFY `name` varchar(128) NOT NULL, + MODIFY `email` varchar(128) NOT NULL; -- Gitblit v1.9.1