diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2012-02-07 07:41:31 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2012-02-07 07:41:31 +0000 |
| commit | 91d419d68a0583db2fbcb2a170fd2e162b59ad3b (patch) | |
| tree | d53616fba21523ba91f08b90536e6c70f3255b55 /roundcubemail/SQL/mssql.initial.sql | |
| parent | 68002e6751652ee9319c0d69c402e0935cb62515 (diff) | |
- Fix parse errors in DDL files for MS SQL Server
git-svn-id: https://svn.roundcube.net/trunk@5856 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/SQL/mssql.initial.sql')
| -rw-r--r-- | roundcubemail/SQL/mssql.initial.sql | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/roundcubemail/SQL/mssql.initial.sql b/roundcubemail/SQL/mssql.initial.sql index 406eb5412..72c24f126 100644 --- a/roundcubemail/SQL/mssql.initial.sql +++ b/roundcubemail/SQL/mssql.initial.sql @@ -29,8 +29,8 @@ CREATE TABLE [dbo].[cache_messages] ( [mailbox] [varchar] (128) COLLATE Latin1_General_CI_AI NOT NULL ,
[uid] [int] NOT NULL ,
[changed] [datetime] NOT NULL ,
- [data] [text] COLLATE Latin1_General_CI_AI NOT NULL
- [flags] [int](1) NOT NULL ,
+ [data] [text] COLLATE Latin1_General_CI_AI NOT NULL ,
+ [flags] [int] NOT NULL
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO
@@ -226,7 +226,7 @@ GO ALTER TABLE [dbo].[cache_messages] ADD
CONSTRAINT [DF_cache_messages_changed] DEFAULT (getdate()) FOR [changed],
- CONSTRAINT [DF_cache_messages_flags] DEFAULT (0) FOR [flags],
+ CONSTRAINT [DF_cache_messages_flags] DEFAULT (0) FOR [flags]
GO
CREATE INDEX [IX_cache_messages_user_id] ON [dbo].[cache_messages]([user_id]) ON [PRIMARY]
@@ -310,7 +310,7 @@ GO ALTER TABLE [dbo].[searches] ADD
CONSTRAINT [DF_searches_user] DEFAULT (0) FOR [user_id],
- CONSTRAINT [DF_searches_type] DEFAULT (0) FOR [type],
+ CONSTRAINT [DF_searches_type] DEFAULT (0) FOR [type]
GO
CREATE UNIQUE INDEX [IX_searches_user_type_name] ON [dbo].[searches]([user_id],[type],[name]) ON [PRIMARY]
|
