diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-03-25 19:08:19 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-03-25 19:08:19 +0000 |
| commit | fa7e3c3f39edf431a8d92b7b652b9c88c9c853ce (patch) | |
| tree | ef2128fc8bf8091095bffa56b6a32fa77276d10e /roundcubemail/SQL/postgres.update.sql | |
| parent | 70c723bc60624dee43b24ed1a482dca83c5142b4 (diff) | |
Optimize database schema; get rid of unnecessary indexes
git-svn-id: https://svn.roundcube.net/trunk@1218 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/SQL/postgres.update.sql')
| -rw-r--r-- | roundcubemail/SQL/postgres.update.sql | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/roundcubemail/SQL/postgres.update.sql b/roundcubemail/SQL/postgres.update.sql index 0d63cf934..add454ab8 100644 --- a/roundcubemail/SQL/postgres.update.sql +++ b/roundcubemail/SQL/postgres.update.sql @@ -1,12 +1,4 @@ --- RoundCube Webmail update script for Postres databases --- Updates from version 0.1-beta and older - -ALTER TABLE "messages" DROP body; -ALTER TABLE "messages" ADD structure TEXT; -ALTER TABLE "messages" ADD UNIQUE (user_id, cache_key, uid); - -ALTER TABLE "identities" ADD html_signature INTEGER; -ALTER TABLE "identities" ALTER html_signature SET DEFAULT 0; -UPDATE identities SET html_signature = 0; -ALTER TABLE "identities" ALTER html_signature SET NOT NULL; +-- RoundCube Webmail update script for Postgres databases +-- Updates from version 0.1-stable to 0.1.1 +ALTER TABLE "cache" ADD INDEX (user_id, cache_key); |
