Update 6.sql

This commit is contained in:
Enrique Camargo 2017-08-31 17:58:34 +02:00
parent 068be133ed
commit afd184f466
1 changed files with 11 additions and 8 deletions

View File

@ -2,12 +2,15 @@ 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;
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;
COMMIT;