Skip to content

Commit

Permalink
'serverkey' and 'salt' should have empty string as default
Browse files Browse the repository at this point in the history
  • Loading branch information
zinid committed Apr 8, 2016
1 parent 86dfbe6 commit c5dbdfc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sql/mssql.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c5dbdfc

Please sign in to comment.