Add user source property to schema

This commit is contained in:
Johannes Zellner
2019-08-29 17:52:00 +02:00
parent b9efa8f445
commit 4b86311ab9
3 changed files with 19 additions and 1 deletions

View File

@@ -27,6 +27,7 @@ CREATE TABLE IF NOT EXISTS users(
twoFactorAuthenticationSecret VARCHAR(128) DEFAULT "",
twoFactorAuthenticationEnabled BOOLEAN DEFAULT false,
admin BOOLEAN DEFAULT false,
source VARCHAR(128) DEFAULT "",
PRIMARY KEY(id));