mig 6->7 alert_execution_Queue
This commit is contained in:
parent
cea110e209
commit
7b9790fa36
|
@ -4120,14 +4120,11 @@ ALTER TABLE `tperfil` ADD COLUMN `network_config_management`tinyint(1) NOT NULL
|
||||||
-- Table `talert_execution_queue`
|
-- Table `talert_execution_queue`
|
||||||
-- -----------------------------------------------------
|
-- -----------------------------------------------------
|
||||||
CREATE TABLE IF NOT EXISTS `talert_execution_queue` (
|
CREATE TABLE IF NOT EXISTS `talert_execution_queue` (
|
||||||
`id` int(10) unsigned NOT NULL auto_increment,
|
`id` INT UNSIGNED NOT NULL AUTO_INCREMENT,
|
||||||
`id_alert_template_module` int(10) unsigned NOT NULL,
|
`data` LONGTEXT,
|
||||||
`alert_mode` tinyint(1) NOT NULL,
|
`utimestamp` BIGINT NOT NULL DEFAULT 0,
|
||||||
`data` mediumtext NOT NULL,
|
PRIMARY KEY (`id`)
|
||||||
`extra_macros` text,
|
) ENGINE=InnoDB DEFAULT CHARSET=UTF8MB4;
|
||||||
`utimestamp` bigint(20) NOT NULL default '0',
|
|
||||||
PRIMARY KEY (`id`)
|
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
||||||
|
|
||||||
UPDATE `tlanguage` SET `name` = 'Deutsch' WHERE `id_language` = 'de';
|
UPDATE `tlanguage` SET `name` = 'Deutsch' WHERE `id_language` = 'de';
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue