diff --git a/pandora_console/extras/mr/22.sql b/pandora_console/extras/mr/22.sql new file mode 100644 index 0000000000..cee9b45ede --- /dev/null +++ b/pandora_console/extras/mr/22.sql @@ -0,0 +1,5 @@ +START TRANSACTION; + +ALTER TABLE tlayout_template MODIFY `name` varchar(600) NOT NULL; + +COMMIT; diff --git a/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql b/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql index 079c9b5d23..10a93a2e83 100644 --- a/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql +++ b/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql @@ -1740,6 +1740,8 @@ CREATE TABLE IF NOT EXISTS `tlayout_template` ( PRIMARY KEY(`id`) ) ENGINE = InnoDB DEFAULT CHARSET=utf8; +ALTER TABLE tlayout_template MODIFY `name` varchar(600) NOT NULL; + -- --------------------------------------------------------------------- -- Table `tlayout_template_data` -- --------------------------------------------------------------------- diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql index 8d2b64cfee..945f79a1c6 100644 --- a/pandora_console/pandoradb.sql +++ b/pandora_console/pandoradb.sql @@ -3294,7 +3294,7 @@ CREATE TABLE IF NOT EXISTS `tautoconfig_actions` ( -- --------------------------------------------------------------------- CREATE TABLE IF NOT EXISTS `tlayout_template` ( `id` INTEGER UNSIGNED NOT NULL AUTO_INCREMENT, - `name` varchar(50) NOT NULL, + `name` varchar(600) NOT NULL, `id_group` INTEGER UNSIGNED NOT NULL, `background` varchar(200) NOT NULL, `height` INTEGER UNSIGNED NOT NULL default 0,