Merge branch 'ent-11446-errores-sql-al-crear-plantillas-de-consola-visual' into 'develop'

Draft: Ent 11446 errores sql al crear plantillas de consola visual

See merge request artica/pandorafms!6021
This commit is contained in:
Rafael Ameijeiras 2023-06-05 06:40:45 +00:00
commit 54d8292385
2 changed files with 4 additions and 0 deletions

View File

@ -71,6 +71,9 @@ WHERE name='Cisco _nameOID_ power state';
ALTER TABLE `tlayout_data`
ADD COLUMN `recursive_group` TINYINT NOT NULL DEFAULT '0' AFTER `fill_color`;
ALTER TABLE `tlayout_template_data`
ADD COLUMN `recursive_group` TINYINT NOT NULL DEFAULT '0' AFTER `fill_color`;
ALTER TABLE `tusuario`
ADD COLUMN `metaconsole_section` VARCHAR(255) NOT NULL DEFAULT 'Default' AFTER `data_section`;

View File

@ -3696,6 +3696,7 @@ CREATE TABLE IF NOT EXISTS `tlayout_template_data` (
`label_position` VARCHAR(50) NOT NULL DEFAULT 'down',
`border_color` VARCHAR(200) DEFAULT '',
`fill_color` VARCHAR(200) DEFAULT '',
`recursive_group` TINYINT NOT NULL DEFAULT '0',
`show_statistics` TINYINT NOT NULL DEFAULT 0,
`linked_layout_node_id` INT NOT NULL DEFAULT 0,
`linked_layout_status_type` ENUM ('default', 'weight', 'service') DEFAULT 'default',