summaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorBadlop <badlop@process-one.net>2016-03-29 12:37:49 +0200
committerBadlop <badlop@process-one.net>2016-03-29 12:37:49 +0200
commite386bf6b58876436e8048ab327da883cc3dfb108 (patch)
treebe09e32706aa453f63c17086ab5c234fbad01c2c /sql
parentMerge branch 'master' of github.com:processone/ejabberd (diff)
In SQL files create Users table with SCRAM support by default (#956)
Diffstat (limited to 'sql')
-rw-r--r--sql/lite.sql3
-rw-r--r--sql/mssql.sql3
-rw-r--r--sql/mysql.sql5
-rw-r--r--sql/pg.sql5
4 files changed, 14 insertions, 2 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
);
diff --git a/sql/mssql.sql b/sql/mssql.sql
index 155ea64a..675542b6 100644
--- a/sql/mssql.sql
+++ b/sql/mssql.sql
@@ -362,6 +362,9 @@ 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,
+ [iterationcount] [smallint] NOT NULL DEFAULT 0,
[created_at] [datetime] NOT NULL DEFAULT GETDATE(),
CONSTRAINT [users_PRIMARY] PRIMARY KEY CLUSTERED
(
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;
diff --git a/sql/pg.sql b/sql/pg.sql
index 87cccd48..1bc4f397 100644
--- a/sql/pg.sql
+++ b/sql/pg.sql
@@ -19,10 +19,13 @@
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 now()
);
--- 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;