Merge branch '1211-Falta-tabla-de-proceso-de-reseteo-de-contraseñas-en-MR' into 'develop'

Add password reset table in MR - #1211

See merge request !754
This commit is contained in:
slerena 2017-09-01 00:09:39 +02:00
commit 53e61715a1
1 changed files with 8 additions and 0 deletions

View File

@ -2,6 +2,14 @@ START TRANSACTION;
ALTER TABLE tagente MODIFY COLUMN `cascade_protection_module` int(10) unsigned NOT NULL default '0';
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;
ALTER TABLE tserver ADD COLUMN exec_proxy tinyint(1) UNSIGNED NOT NULL default 0;
ALTER TABLE tevent_response ADD COLUMN server_to_exec int(10) unsigned NOT NULL DEFAULT 0;