Merge branch 'ent-4131-error-migrate-6-a-7' into 'develop'
Added missing create table to migrate 6 to 7 See merge request artica/pandorafms!2477
This commit is contained in:
commit
537a73be04
|
@ -1989,6 +1989,33 @@ CREATE TABLE IF NOT EXISTS `tnetwork_matrix` (
|
||||||
UNIQUE (`source`, `destination`, `utimestamp`)
|
UNIQUE (`source`, `destination`, `utimestamp`)
|
||||||
) ENGINE = InnoDB DEFAULT CHARSET=utf8 ;
|
) ENGINE = InnoDB DEFAULT CHARSET=utf8 ;
|
||||||
|
|
||||||
|
-- ---------------------------------------------------------------------
|
||||||
|
-- Table `user_task`
|
||||||
|
-- ---------------------------------------------------------------------
|
||||||
|
CREATE TABLE IF NOT EXISTS `tuser_task` (
|
||||||
|
`id` int(20) unsigned NOT NULL auto_increment,
|
||||||
|
`function_name` varchar(80) NOT NULL default '',
|
||||||
|
`parameters` text NOT NULL default '',
|
||||||
|
`name` varchar(60) NOT NULL default '',
|
||||||
|
PRIMARY KEY (`id`)
|
||||||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||||
|
|
||||||
|
-- ---------------------------------------------------------------------
|
||||||
|
-- Table `user_task_scheduled`
|
||||||
|
-- ---------------------------------------------------------------------
|
||||||
|
CREATE TABLE IF NOT EXISTS `tuser_task_scheduled` (
|
||||||
|
`id` int(20) unsigned NOT NULL auto_increment,
|
||||||
|
`id_usuario` varchar(60) NOT NULL default '0',
|
||||||
|
`id_user_task` int(20) unsigned NOT NULL default '0',
|
||||||
|
`args` TEXT NOT NULL,
|
||||||
|
`scheduled` enum('no','hourly','daily','weekly','monthly','yearly','custom') default 'no',
|
||||||
|
`last_run` int(20) unsigned default '0',
|
||||||
|
`custom_data` int(10) NULL default '0',
|
||||||
|
`flag_delete` tinyint(1) UNSIGNED NOT NULL default 0,
|
||||||
|
`id_grupo` int(10) unsigned NOT NULL default 0,
|
||||||
|
PRIMARY KEY (`id`)
|
||||||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||||
|
|
||||||
-- -----------------------------------------------------
|
-- -----------------------------------------------------
|
||||||
-- Table `tnotification_source`
|
-- Table `tnotification_source`
|
||||||
-- -----------------------------------------------------
|
-- -----------------------------------------------------
|
||||||
|
|
Loading…
Reference in New Issue