From cb105aa9f12396d1644e87d91c35e8f5c3eefbbd Mon Sep 17 00:00:00 2001 From: alecpl <alec@alec.pl> Date: Fri, 05 Nov 2010 07:01:15 -0400 Subject: [PATCH] - Fix displaying long header names in message headers table - Fix translation labels names for Mail-Followup-to and Mail-Reply-To --- SQL/mssql.upgrade.sql | 11 ++++++++++- 1 files changed, 10 insertions(+), 1 deletions(-) diff --git a/SQL/mssql.upgrade.sql b/SQL/mssql.upgrade.sql index 1aa771b..cf0c171 100644 --- a/SQL/mssql.upgrade.sql +++ b/SQL/mssql.upgrade.sql @@ -22,7 +22,7 @@ ON DELETE CASCADE ON UPDATE CASCADE GO -ALTER TABLE [dbo].[identities] add [changed] [datetime] NULL +ALTER TABLE [dbo].[identities] ADD [changed] [datetime] NULL GO CREATE TABLE [dbo].[contactgroups] ( @@ -87,3 +87,12 @@ ON DELETE CASCADE ON UPDATE CASCADE GO +-- 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 + -- Gitblit v1.9.1