From d52e31e94c5a6d2866465d21c567a0b5465fb5ee Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Wed, 14 Jun 2023 12:06:20 +0200 Subject: [PATCH] #9771 fixed create table database --- pandora_console/pandoradb.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql index e3de593e24..4a4c50c331 100644 --- a/pandora_console/pandoradb.sql +++ b/pandora_console/pandoradb.sql @@ -4362,4 +4362,5 @@ CREATE TABLE IF NOT EXISTS `tdiscovery_apps_tasks_macros` ( `value` text NOT NULL DEFAULT '', `temp_conf` tinyint unsigned NOT NULL DEFAULT 0, PRIMARY KEY (`id_task`, `macro`), - FOREIGN KEY (`id_task`) REFERENCES trecon_task(`id_rt`) ON DELETE CASCADE ON UPDATE CASCADE \ No newline at end of file + FOREIGN KEY (`id_task`) REFERENCES trecon_task(`id_rt`) ON DELETE CASCADE ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=UTF8MB4; \ No newline at end of file