From e386bf6b58876436e8048ab327da883cc3dfb108 Mon Sep 17 00:00:00 2001 From: Badlop Date: Tue, 29 Mar 2016 12:37:49 +0200 Subject: In SQL files create Users table with SCRAM support by default (#956) --- sql/lite.sql | 3 +++ 1 file changed, 3 insertions(+) (limited to 'sql/lite.sql') diff --git a/sql/lite.sql b/sql/lite.sql index 0cf7ff414..1741ea950 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 ); -- cgit v1.2.3