From 8d1e3c1cf679dcc89a405b1c085effe893497a4e Mon Sep 17 00:00:00 2001 From: Pablo Aragon Date: Fri, 26 Apr 2024 10:21:26 +0200 Subject: [PATCH] 13853-Fixes in wizard visual consoles --- pandora_console/extras/mr/69.sql | 2 ++ pandora_console/pandoradb.sql | 1 + 2 files changed, 3 insertions(+) diff --git a/pandora_console/extras/mr/69.sql b/pandora_console/extras/mr/69.sql index 45047f9149..cdfb110894 100644 --- a/pandora_console/extras/mr/69.sql +++ b/pandora_console/extras/mr/69.sql @@ -15,6 +15,8 @@ ALTER TABLE tfiles_repo_group CONVERT TO CHARACTER SET UTF8MB4; ALTER TABLE `tusuario` ADD COLUMN `stop_lts_modal` TINYINT NOT NULL DEFAULT 0 AFTER `session_max_time_expire`; +ALTER TABLE `tlayout_template` ADD COLUMN `create_from` INT UNSIGNED NOT NULL DEFAULT 0; + -- START MIGRATION MSSQL -- SET @current_app_type = 12; SET @short_name = 'pandorafms.mssql'; diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql index 9b4d2b595a..8696d17d95 100644 --- a/pandora_console/pandoradb.sql +++ b/pandora_console/pandoradb.sql @@ -3777,6 +3777,7 @@ CREATE TABLE IF NOT EXISTS `tlayout_template` ( `maintenance_mode` TEXT, `grid_color` VARCHAR(45) NOT NULL DEFAULT '#cccccc', `grid_size` VARCHAR(45) NOT NULL DEFAULT '10', + `create_from` INT UNSIGNED NOT NULL DEFAULT 0, PRIMARY KEY(`id`) ) ENGINE=InnoDB DEFAULT CHARSET=UTF8MB4;