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

@@ -85,6 +85,7 @@ CREATE TABLE `guacamole_user` (
`username` varchar(128) NOT NULL,
`password_hash` binary(32) NOT NULL,
`password_salt` binary(32),
`password_date` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
-- Account disabled/expired status
`disabled` boolean NOT NULL DEFAULT 0,