dashboard
repositories
filestore
activity
search
login
githubFork
/
roundcubemail
Roundcubemail devel
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
Fix IPv6 address validation on PHP with disabled IPv6 support
Aleksander Machniak
2015-08-12
6b31846c438dc19cca0f2a01582bdf47dff61f81
[githubFork/roundcubemail.git]
/
SQL
/
mssql
/
2011121400.sql
1
2
3
4
5
6
7
8
9
-- 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