mirror of
https://github.com/processone/ejabberd
synced 2025-10-05 19:42:11 +02:00
'serverkey' and 'salt' should have empty string as default
This commit is contained in:
parent
86dfbe6ece
commit
c5dbdfc71a
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue