Add password reset table in MR - #1211

This commit is contained in:
enriquecd 2017-08-28 12:22:59 +02:00
parent 88acc6352d
commit 068be133ed

View File

@ -2,4 +2,12 @@ START TRANSACTION;
ALTER TABLE tagente MODIFY COLUMN `cascade_protection_module` int(10) unsigned NOT NULL default '0';
COMMIT;
COMMIT;
CREATE TABLE IF NOT EXISTS treset_pass_history (
id int(10) unsigned NOT NULL auto_increment,
id_user varchar(60) NOT NULL,
reset_moment datetime NOT NULL,
success tinyint(1) NOT NULL,
PRIMARY KEY (id)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;