mirror of
https://github.com/processone/ejabberd
synced 2025-10-03 09:49:18 +02:00
Add SCRAM support to ejabberd_auth_odbc
This commit is contained in:
parent
0eb6b942ff
commit
e575c87ea2
4 changed files with 307 additions and 107 deletions
|
@ -22,6 +22,10 @@ CREATE TABLE users (
|
|||
created_at TIMESTAMP NOT NULL DEFAULT now()
|
||||
);
|
||||
|
||||
-- To support SCRAM auth:
|
||||
-- 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;
|
||||
|
||||
CREATE TABLE last (
|
||||
username text PRIMARY KEY,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue