Added external query to mr

This commit is contained in:
Arturo Gonzalez 2017-04-20 16:18:37 +02:00
parent 29ad608ddb
commit 82530c9b59
1 changed files with 8 additions and 0 deletions

View File

@ -2,4 +2,12 @@ START TRANSACTION;
ALTER TABLE tusuario add default_event_filter int(10) unsigned NOT NULL DEFAULT 0; ALTER TABLE tusuario add default_event_filter int(10) unsigned NOT NULL DEFAULT 0;
CREATE TABLE IF NOT EXISTS `treset_pass` (
`id` bigint(10) unsigned NOT NULL auto_increment,
`id_user` varchar(100) NOT NULL default '',
`cod_hash` varchar(100) NOT NULL default '',
`reset_time` int(10) unsigned NOT NULL default 0,
PRIMARY KEY (`id`)
)ENGINE=InnoDB DEFAULT CHARSET=utf8;
COMMIT; COMMIT;