diff options
author | thomascube <thomas@roundcube.net> | 2011-02-14 20:46:48 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2011-02-14 20:46:48 +0000 |
commit | 3e2637351da9559a4aa420004ac90e9fe30477ef (patch) | |
tree | ca7f99df5bba9fc2bf63ab3bb14566dfffa3b607 /SQL/mssql.upgrade.sql | |
parent | fc2d3de7691a9b1d083eed435c2c327c2b8edbaa (diff) |
Fulltext search over contact fields. Attention: DATABASE SCHEMA CHANGED\!
Diffstat (limited to 'SQL/mssql.upgrade.sql')
-rw-r--r-- | SQL/mssql.upgrade.sql | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/SQL/mssql.upgrade.sql b/SQL/mssql.upgrade.sql index 4072c25ff..3d067924c 100644 --- a/SQL/mssql.upgrade.sql +++ b/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
|