Changeset 64584be in github


Ignore:
Timestamp:
Jun 10, 2012 4:15:07 AM (12 months ago)
Author:
Aleksander Machniak <alec@…>
Branches:
release-0.8
Children:
d1f7432
Parents:
2c48c19
git-author:
Aleksander Machniak <alec@…> (06/10/12 04:13:47)
git-committer:
Aleksander Machniak <alec@…> (06/10/12 04:15:07)
Message:

Fix DDL update from 0.7 for MS SQL Server

File:
1 edited

Legend:

Unmodified
Added
Removed
  • SQL/mssql.upgrade.sql

    r16114e6 r64584be  
    247247-- Updates from version 0.7 
    248248 
     249ALTER TABLE [dbo].[contacts] DROP CONSTRAINT [DF_contacts_email] 
     250GO 
    249251ALTER TABLE [dbo].[contacts] ALTER COLUMN [email] [text] COLLATE Latin1_General_CI_AI NOT NULL 
    250252GO 
     253ALTER TABLE [dbo].[contacts] ADD CONSTRAINT [DF_contacts_email] DEFAULT ('') FOR [email] 
     254GO 
    251255 
    252256-- Updates from version 0.8-rc 
Note: See TracChangeset for help on using the changeset viewer.