mig 6->7 alert_execution_Queue

This commit is contained in:
fbsanchez 2022-02-02 13:40:28 +01:00
parent cea110e209
commit 7b9790fa36
1 changed files with 5 additions and 8 deletions

View File

@ -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,
`extra_macros` text,
`utimestamp` bigint(20) NOT NULL default '0',
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8; ) ENGINE=InnoDB DEFAULT CHARSET=UTF8MB4;
UPDATE `tlanguage` SET `name` = 'Deutsch' WHERE `id_language` = 'de'; UPDATE `tlanguage` SET `name` = 'Deutsch' WHERE `id_language` = 'de';