diff --git a/pandora_console/extras/mr/59.sql b/pandora_console/extras/mr/59.sql index b390fa15a2..8a764c36d3 100644 --- a/pandora_console/extras/mr/59.sql +++ b/pandora_console/extras/mr/59.sql @@ -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; \ No newline at end of file diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql index ae0e6624f3..1afd4f876d 100644 --- a/pandora_console/pandoradb.sql +++ b/pandora_console/pandoradb.sql @@ -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;