From 37f24d3b5f95baddf4bc5bd3f1d7e205dc13b056 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Thu, 11 May 2023 14:54:34 +0200 Subject: [PATCH] #10011 fixed mr --- pandora_console/extras/mr/63.sql | 2 -- pandora_console/extras/mr/65.sql | 5 +++++ 2 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 pandora_console/extras/mr/65.sql diff --git a/pandora_console/extras/mr/63.sql b/pandora_console/extras/mr/63.sql index 98c3a81b59..9aca7c604c 100644 --- a/pandora_console/extras/mr/63.sql +++ b/pandora_console/extras/mr/63.sql @@ -40,6 +40,4 @@ CREATE TABLE IF NOT EXISTS `tsesion_filter_log_viewer` ( ALTER TABLE `talert_template_module_actions` ADD COLUMN `recovered` TINYINT NOT NULL DEFAULT 0; -ALTER TABLE `treport_content` ADD COLUMN `period_range` INT NULL DEFAULT 0 AFTER `period`; - COMMIT; diff --git a/pandora_console/extras/mr/65.sql b/pandora_console/extras/mr/65.sql new file mode 100644 index 0000000000..43b7926c36 --- /dev/null +++ b/pandora_console/extras/mr/65.sql @@ -0,0 +1,5 @@ +START TRANSACTION; + +ALTER TABLE `treport_content` ADD COLUMN `period_range` INT NULL DEFAULT 0 AFTER `period`; + +COMMIT;