Welcome to mirror list, hosted at ThFree Co, Russian Federation.

2010100600.sql « mssql « SQL - github.com/roundcube/roundcubemail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fb045e303b5f96e0f1178399b9417bc632dd4b2b (plain)
1
2
3
4
5
6
7
8
9
-- Updates from version 0.4.2

DROP INDEX [IX_users_username]
GO
CREATE UNIQUE INDEX [IX_users_username] ON [dbo].[users]([username],[mail_host]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[contacts] ALTER COLUMN [email] [varchar] (255) COLLATE Latin1_General_CI_AI NOT NULL
GO