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

github.com/roundcube/roundcubemail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/SQL
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2017-12-19 10:45:18 +0300
committerAleksander Machniak <alec@alec.pl>2017-12-19 10:46:02 +0300
commit0c0e46a2c6cf16a53c864c4fee4e1e3bc1e50716 (patch)
treec42d920fb16c13e5d9c612fb05b25fdc332b02d3 /SQL
parent472e48ff0d50de26c0e350d720b0b54e1be77f58 (diff)
Fix syntax error in mssql.initial.sql (#6097)
Diffstat (limited to 'SQL')
-rw-r--r--SQL/mssql.initial.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/SQL/mssql.initial.sql b/SQL/mssql.initial.sql
index 6030d704a..c91433eb0 100644
--- a/SQL/mssql.initial.sql
+++ b/SQL/mssql.initial.sql
@@ -222,7 +222,7 @@ GO
ALTER TABLE [dbo].[cache] ADD
CONSTRAINT [DF_cache_user_id] DEFAULT ('0') FOR [user_id],
- CONSTRAINT [DF_cache_cache_key] DEFAULT ('') FOR [cache_key],
+ CONSTRAINT [DF_cache_cache_key] DEFAULT ('') FOR [cache_key]
GO
ALTER TABLE [dbo].[cache_index] ADD