GUACAMOLE-36: Add password reset date to schema.

This commit is contained in:
Michael Jumper
2016-08-22 12:01:58 -07:00
parent 66f00adab0
commit a207411241
7 changed files with 96 additions and 0 deletions

View File

@@ -126,6 +126,7 @@ CREATE TABLE guacamole_user (
username varchar(128) NOT NULL,
password_hash bytea NOT NULL,
password_salt bytea,
password_date timestamptz NOT NULL DEFAULT CURRENT_TIMESTAMP,
-- Account disabled/expired status
disabled boolean NOT NULL DEFAULT FALSE,