summaryrefslogtreecommitdiff
path: root/SQL
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2012-06-10 10:13:47 +0200
committerAleksander Machniak <alec@alec.pl>2012-06-10 10:13:47 +0200
commit7ac99af37b3b761b4daf2f0d9340c17e7855c234 (patch)
treec7c6d240c7883d707cd4c9a51b8ac0b62cda4fea /SQL
parent6e1864cb1731bb870d775ac15eea6589a779ab2e (diff)
Fix DDL update from 0.7 for MS SQL Server
Diffstat (limited to 'SQL')
-rw-r--r--SQL/mssql.upgrade.sql4
1 files changed, 4 insertions, 0 deletions
diff --git a/SQL/mssql.upgrade.sql b/SQL/mssql.upgrade.sql
index 10bae6e47..d111ef3e7 100644
--- a/SQL/mssql.upgrade.sql
+++ b/SQL/mssql.upgrade.sql
@@ -246,8 +246,12 @@ GO
-- Updates from version 0.7
+ALTER TABLE [dbo].[contacts] DROP CONSTRAINT [DF_contacts_email]
+GO
ALTER TABLE [dbo].[contacts] ALTER COLUMN [email] [text] COLLATE Latin1_General_CI_AI NOT NULL
GO
+ALTER TABLE [dbo].[contacts] ADD CONSTRAINT [DF_contacts_email] DEFAULT ('') FOR [email]
+GO
-- Updates from version 0.8-rc