summaryrefslogtreecommitdiff
path: root/roundcubemail/SQL/mysql.update.sql
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-09-07 12:40:05 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-09-07 12:40:05 +0000
commit0618dc9a521d74097207c58f58bb2632aa7b17d5 (patch)
treee8bd3bb212d209855331f7b4c594597e5c08bfd2 /roundcubemail/SQL/mysql.update.sql
parent065964c07ca4949156073ff8cfeb6310702465be (diff)
- added index in messages table
git-svn-id: https://svn.roundcube.net/trunk@2931 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/SQL/mysql.update.sql')
-rw-r--r--roundcubemail/SQL/mysql.update.sql5
1 files changed, 5 insertions, 0 deletions
diff --git a/roundcubemail/SQL/mysql.update.sql b/roundcubemail/SQL/mysql.update.sql
index 5590099d0..f0cac2449 100644
--- a/roundcubemail/SQL/mysql.update.sql
+++ b/roundcubemail/SQL/mysql.update.sql
@@ -44,3 +44,8 @@ ALTER TABLE `cache`
ALTER TABLE `users`
CHANGE `language` `language` varchar(5);
+
+-- Updates from version 0.3-stable
+
+ALTER TABLE `messages`
+ ADD INDEX `index_index` (`user_id`, `cache_key`, `idx`);