summaryrefslogtreecommitdiff
path: root/roundcubemail/SQL/mysql.update.sql
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-09-19 06:15:58 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-09-19 06:15:58 +0000
commite3490449500a655f74d210b0fa5e463d4a2d2b9f (patch)
tree4efa16102cee9c483abb8e58b09a10adec3afcf5 /roundcubemail/SQL/mysql.update.sql
parent8219df7241e3c96bb6b7f9abfa057b8a64b1839f (diff)
- Add lost cache_index.valid column definition
git-svn-id: https://svn.roundcube.net/trunk@5234 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/SQL/mysql.update.sql')
-rw-r--r--roundcubemail/SQL/mysql.update.sql1
1 files changed, 1 insertions, 0 deletions
diff --git a/roundcubemail/SQL/mysql.update.sql b/roundcubemail/SQL/mysql.update.sql
index 7e8f98f03..6181622e7 100644
--- a/roundcubemail/SQL/mysql.update.sql
+++ b/roundcubemail/SQL/mysql.update.sql
@@ -177,6 +177,7 @@ CREATE TABLE `cache_index` (
`user_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
`mailbox` varchar(255) BINARY NOT NULL,
`changed` datetime NOT NULL DEFAULT '1000-01-01 00:00:00',
+ `valid` tinyint(1) NOT NULL DEFAULT '0',
`data` longtext NOT NULL,
CONSTRAINT `user_id_fk_cache_index` FOREIGN KEY (`user_id`)
REFERENCES `users`(`user_id`) ON DELETE CASCADE ON UPDATE CASCADE,