From ef2950ff56623030b0de588077d1049defb7284c Mon Sep 17 00:00:00 2001 From: "felix.suarez" Date: Mon, 16 Oct 2023 14:03:56 -0600 Subject: [PATCH] Fix conflict --- pandora_console/extras/mr/66.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/pandora_console/extras/mr/66.sql b/pandora_console/extras/mr/66.sql index b1275b2b43..b163c04397 100644 --- a/pandora_console/extras/mr/66.sql +++ b/pandora_console/extras/mr/66.sql @@ -267,6 +267,7 @@ SET @id_os = 9; INSERT INTO tmodule_inventory (`id_os`, `name`, `description`, `interpreter`, `data_format`, `code`, `block_mode`,`script_mode`) SELECT * FROM (SELECT @id_os id_os, @tmodule_name name, @tmodule_description description, '' interpreter, 'ID:STATUS' data_format, '' code, '0' block_mode, 2 script_mode) AS tmp WHERE NOT EXISTS (SELECT name, description FROM tmodule_inventory WHERE name = @tmodule_name and description = @tmodule_description and id_os = @id_os); +INSERT INTO tmodule_group (name) SELECT ('Security') WHERE NOT EXISTS (SELECT name FROM tmodule_group WHERE LOWER(name) = 'security'); ALTER TABLE tagente_modulo ADD COLUMN `last_compact` TIMESTAMP NOT NULL DEFAULT 0;