diff options
author | Mickael Remond <mremond@process-one.net> | 2016-03-29 13:05:22 +0200 |
---|---|---|
committer | Mickael Remond <mremond@process-one.net> | 2016-03-29 13:06:13 +0200 |
commit | 3b2d0fd24a0203ecf72da19e06d4740a8d33b46e (patch) | |
tree | fb00310ec5ce8bc86f3b2c27b32d104efc72c389 /sql/lite.sql | |
parent | Fix commands access check. (diff) | |
parent | Pass noauth when auth isn't provided, reverts a1129dc (processone/ejabberd-co... (diff) |
Fix commands access check.
Fixes ECS-20
Diffstat (limited to 'sql/lite.sql')
-rw-r--r-- | sql/lite.sql | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sql/lite.sql b/sql/lite.sql index 0cf7ff41..1741ea95 100644 --- a/sql/lite.sql +++ b/sql/lite.sql @@ -19,6 +19,9 @@ CREATE TABLE users ( username text PRIMARY KEY, password text NOT NULL, + serverkey text NOT NULL DEFAULT '', + salt text NOT NULL DEFAULT '', + iterationcount integer NOT NULL DEFAULT 0, created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ); |