fixed vc template creation

This commit is contained in:
alejandro.campos@artica.es 2022-11-30 18:50:57 +01:00
parent d39c014e0f
commit 2c020bcd46
2 changed files with 3 additions and 0 deletions

View File

@ -4,4 +4,6 @@ ALTER TABLE `tevent_filter` MODIFY COLUMN `server_id` TEXT;
UPDATE tconfig SET value = 'Hope' WHERE token LIKE 'lts_name';
ALTER TABLE `tlayout_template` ADD COLUMN `maintenance_mode` TEXT;
COMMIT;

View File

@ -3654,6 +3654,7 @@ CREATE TABLE IF NOT EXISTS `tlayout_template` (
`background_color` VARCHAR(50) NOT NULL DEFAULT '#FFF',
`is_favourite` INT UNSIGNED NOT NULL DEFAULT 0,
`auto_adjust` INT UNSIGNED NOT NULL DEFAULT 0,
`maintenance_mode` TEXT,
PRIMARY KEY(`id`)
) ENGINE=InnoDB DEFAULT CHARSET=UTF8MB4;