From cefc5c4605a218f9c2491f95105957f75dfc5769 Mon Sep 17 00:00:00 2001 From: Daniel Barbero Date: Tue, 13 Sep 2022 08:30:37 +0200 Subject: [PATCH] fixed size field bbdd tmodule_group pandora_enterprise#9453 --- pandora_console/extras/mr/57.sql | 2 ++ pandora_console/pandoradb.sql | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/pandora_console/extras/mr/57.sql b/pandora_console/extras/mr/57.sql index 93493913a6..646da1f3d6 100644 --- a/pandora_console/extras/mr/57.sql +++ b/pandora_console/extras/mr/57.sql @@ -6,4 +6,6 @@ ALTER TABLE `tplanned_downtime` ADD COLUMN `cron_interval_to` VARCHAR(100) DEFAU SET @id_config := (SELECT id_config FROM tconfig WHERE `token` = 'metaconsole_node_id' AND `value` IS NOT NULL ORDER BY id_config DESC LIMIT 1); DELETE FROM tconfig WHERE `token` = 'metaconsole_node_id' AND (id_config < @id_config OR `value` IS NULL); +ALTER TABLE `tmodule_group` MODIFY COLUMN `id_mg` SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT; + COMMIT; \ No newline at end of file diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql index c3b21084a1..70ae3d46a6 100644 --- a/pandora_console/pandoradb.sql +++ b/pandora_console/pandoradb.sql @@ -820,7 +820,7 @@ CREATE TABLE IF NOT EXISTS `tlink` ( -- Table `tmodule_group` -- ---------------------------------------------------------------------- CREATE TABLE IF NOT EXISTS `tmodule_group` ( - `id_mg` TINYINT UNSIGNED NOT NULL AUTO_INCREMENT, + `id_mg` SMALLINT UNSIGNED NOT NULL AUTO_INCREMENT, `name` VARCHAR(150) NOT NULL DEFAULT '', PRIMARY KEY (`id_mg`) ) ENGINE=InnoDB DEFAULT CHARSET=UTF8MB4;