#11446 Add column in tlayout_template_data

This commit is contained in:
miguel angel rasteu 2023-06-02 13:03:20 +02:00
parent f113af4b6e
commit c1dd5d39c5
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' AFTER `fill_color`,
`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',