diff options
| author | netbit <netbit@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-09-17 12:50:54 +0000 |
|---|---|---|
| committer | netbit <netbit@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-09-17 12:50:54 +0000 |
| commit | cb11c83a90bf7434b91e0b1e2bfdd26242b95928 (patch) | |
| tree | 76cd847f41e1c4cc52f72b6181ff9cdcbf8bfee6 /roundcubemail/SQL/mysql.update.sql | |
| parent | 85da924261b7ada8cbbea2de22781b65af882205 (diff) | |
- Change MySQL data type to avoid problems with big session vars
git-svn-id: https://svn.roundcube.net/trunk@2961 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/SQL/mysql.update.sql')
| -rw-r--r-- | roundcubemail/SQL/mysql.update.sql | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/roundcubemail/SQL/mysql.update.sql b/roundcubemail/SQL/mysql.update.sql index 7091f30a0..729fd3c66 100644 --- a/roundcubemail/SQL/mysql.update.sql +++ b/roundcubemail/SQL/mysql.update.sql @@ -1,5 +1,5 @@ -- RoundCube Webmail update script for MySQL databases --- Updates from version 0.1-stable to 0.1.1 +-- Updates from version 0.1-stable to 0.3.1 TRUNCATE TABLE `messages`; @@ -51,3 +51,6 @@ ALTER TABLE `messages` ADD INDEX `index_index` (`user_id`, `cache_key`, `idx`); TRUNCATE `messages`; + +ALTER TABLE `session` + CHANGE `vars` `vars` MEDIUMTEXT NOT NULL; |
