aboutsummaryrefslogtreecommitdiff
path: root/sql/mssql.sql
diff options
context:
space:
mode:
authorMickael Remond <mremond@process-one.net>2016-04-12 10:34:24 +0200
committerMickael Remond <mremond@process-one.net>2016-04-12 10:34:24 +0200
commitcd2e2b1a880f93b7198bbc17cb1d9be2c23048e8 (patch)
treece38fa8eac3e4540e4792d39f059f6f04a4fab9b /sql/mssql.sql
parentAllow testing user pattern directly in access rules (diff)
Synchronizing master changes
Diffstat (limited to '')
-rw-r--r--sql/mssql.sql4
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/mssql.sql b/sql/mssql.sql
index 675542b68..45378d246 100644
--- a/sql/mssql.sql
+++ b/sql/mssql.sql
@@ -362,8 +362,8 @@ WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW
CREATE TABLE [dbo].[users] (
[username] [varchar] (250) NOT NULL,
[password] [text] NOT NULL,
- [serverkey] [text] NOT NULL,
- [salt] [text] NOT NULL,
+ [serverkey] [text] NOT NULL DEFAULT '',
+ [salt] [text] NOT NULL DEFAULT '',
[iterationcount] [smallint] NOT NULL DEFAULT 0,
[created_at] [datetime] NOT NULL DEFAULT GETDATE(),
CONSTRAINT [users_PRIMARY] PRIMARY KEY CLUSTERED