summaryrefslogtreecommitdiff
path: root/roundcubemail/SQL/mssql.upgrade.sql
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-02-14 20:46:48 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-02-14 20:46:48 +0000
commit1e1ad9ee81069a18c3bbe0101f405491d977b1bf (patch)
tree32dc1f66b2575ba9642696e5fbc4b311ade728cf /roundcubemail/SQL/mssql.upgrade.sql
parent2e91bb700b0ea556d4780a4d80703f3ce8473391 (diff)
Fulltext search over contact fields. Attention: DATABASE SCHEMA CHANGED\!
git-svn-id: https://svn.roundcube.net/trunk@4541 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/SQL/mssql.upgrade.sql')
-rw-r--r--roundcubemail/SQL/mssql.upgrade.sql6
1 files changed, 5 insertions, 1 deletions
diff --git a/roundcubemail/SQL/mssql.upgrade.sql b/roundcubemail/SQL/mssql.upgrade.sql
index 4072c25ff..3d067924c 100644
--- a/roundcubemail/SQL/mssql.upgrade.sql
+++ b/roundcubemail/SQL/mssql.upgrade.sql
@@ -96,4 +96,8 @@ CREATE UNIQUE INDEX [IX_users_username] ON [dbo].[users]([username],[mail_host])
GO
ALTER TABLE [dbo].[contacts] ALTER COLUMN [email] [varchar] (255) COLLATE Latin1_General_CI_AI NOT NULL
GO
-
+
+-- Updates from version 0.5.x
+
+ALTER TABLE [dbo].[contacts] ADD [words] [text] COLLATE Latin1_General_CI_AI NULL
+GO