diff options
author | Badlop <badlop@process-one.net> | 2016-03-29 12:37:49 +0200 |
---|---|---|
committer | Badlop <badlop@process-one.net> | 2016-03-29 12:37:49 +0200 |
commit | e386bf6b58876436e8048ab327da883cc3dfb108 (patch) | |
tree | be09e32706aa453f63c17086ab5c234fbad01c2c /sql/mysql.sql | |
parent | Merge branch 'master' of github.com:processone/ejabberd (diff) |
In SQL files create Users table with SCRAM support by default (#956)
Diffstat (limited to '')
-rw-r--r-- | sql/mysql.sql | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sql/mysql.sql b/sql/mysql.sql index cc603c1b..f08b3a4b 100644 --- a/sql/mysql.sql +++ b/sql/mysql.sql @@ -19,10 +19,13 @@ CREATE TABLE users ( username varchar(191) 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 ) ENGINE=InnoDB CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; --- To support SCRAM auth: +-- Add support for SCRAM auth to a database created before ejabberd 16.03: -- ALTER TABLE users ADD COLUMN serverkey text NOT NULL DEFAULT ''; -- ALTER TABLE users ADD COLUMN salt text NOT NULL DEFAULT ''; -- ALTER TABLE users ADD COLUMN iterationcount integer NOT NULL DEFAULT 0; |