add missing fields in users table

This commit is contained in:
Girish Ramakrishnan
2020-03-30 16:32:28 -07:00
parent 3e6b66751c
commit b345195ea9

View File

@@ -28,6 +28,8 @@ CREATE TABLE IF NOT EXISTS users(
twoFactorAuthenticationEnabled BOOLEAN DEFAULT false,
source VARCHAR(128) DEFAULT "",
role VARCHAR(32),
resetToken VARCHAR(128) DEFAULT "",
active BOOLEAN DEFAULT 1,
PRIMARY KEY(id));