mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-31 01:35:36 +02:00
Add password reset table in MR - #1211
This commit is contained in:
parent
88acc6352d
commit
068be133ed
@ -3,3 +3,11 @@ START TRANSACTION;
|
||||
ALTER TABLE tagente MODIFY COLUMN `cascade_protection_module` int(10) unsigned NOT NULL default '0';
|
||||
|
||||
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;
|
Loading…
x
Reference in New Issue
Block a user