summaryrefslogtreecommitdiff
path: root/SQL/mssql.upgrade.sql
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2012-06-08 13:22:16 +0200
committerAleksander Machniak <alec@alec.pl>2012-06-08 13:24:12 +0200
commit16114e620d0e6781b1d423200b4947eb05bf6afa (patch)
tree7ff30af81652128f934a90d4f7cd94c64d240bfe /SQL/mssql.upgrade.sql
parenta7d5e3e8580466639a18da35af13b97dc3765c16 (diff)
Fix operator incompat. in some queries on contacts table using MS SQL Server (#1488505)
Diffstat (limited to 'SQL/mssql.upgrade.sql')
-rw-r--r--SQL/mssql.upgrade.sql9
1 files changed, 9 insertions, 0 deletions
diff --git a/SQL/mssql.upgrade.sql b/SQL/mssql.upgrade.sql
index d4a5e41ce..10bae6e47 100644
--- a/SQL/mssql.upgrade.sql
+++ b/SQL/mssql.upgrade.sql
@@ -249,3 +249,12 @@ GO
ALTER TABLE [dbo].[contacts] ALTER COLUMN [email] [text] COLLATE Latin1_General_CI_AI NOT NULL
GO
+-- Updates from version 0.8-rc
+
+ALTER TABLE [dbo].[contacts] DROP CONSTRAINT [DF_contacts_email]
+GO
+ALTER TABLE [dbo].[contacts] ALTER COLUMN [email] [varchar] (8000) COLLATE Latin1_General_CI_AI NOT NULL
+GO
+ALTER TABLE [dbo].[contacts] ADD CONSTRAINT [DF_contacts_email] DEFAULT ('') FOR [email]
+GO
+ \ No newline at end of file