From b345195ea9339e8a3e5514d2ec3c3aebeed17167 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Mon, 30 Mar 2020 16:32:28 -0700 Subject: [PATCH] add missing fields in users table --- migrations/schema.sql | 2 ++ 1 file changed, 2 insertions(+) diff --git a/migrations/schema.sql b/migrations/schema.sql index 41a211fc4..015af3252 100644 --- a/migrations/schema.sql +++ b/migrations/schema.sql @@ -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));