mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-30 01:05:39 +02:00
Merge branch '2961-Longitud-del-nombre-de-las-plantillas-de-consolas-visuales' into 'develop'
Changed tlayout_template name table to varchar 600 See merge request artica/pandorafms!1889
This commit is contained in:
commit
3aff162616
5
pandora_console/extras/mr/22.sql
Normal file
5
pandora_console/extras/mr/22.sql
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
START TRANSACTION;
|
||||||
|
|
||||||
|
ALTER TABLE tlayout_template MODIFY `name` varchar(600) NOT NULL;
|
||||||
|
|
||||||
|
COMMIT;
|
@ -1740,6 +1740,8 @@ CREATE TABLE IF NOT EXISTS `tlayout_template` (
|
|||||||
PRIMARY KEY(`id`)
|
PRIMARY KEY(`id`)
|
||||||
) ENGINE = InnoDB DEFAULT CHARSET=utf8;
|
) ENGINE = InnoDB DEFAULT CHARSET=utf8;
|
||||||
|
|
||||||
|
ALTER TABLE tlayout_template MODIFY `name` varchar(600) NOT NULL;
|
||||||
|
|
||||||
-- ---------------------------------------------------------------------
|
-- ---------------------------------------------------------------------
|
||||||
-- Table `tlayout_template_data`
|
-- Table `tlayout_template_data`
|
||||||
-- ---------------------------------------------------------------------
|
-- ---------------------------------------------------------------------
|
||||||
|
@ -3294,7 +3294,7 @@ CREATE TABLE IF NOT EXISTS `tautoconfig_actions` (
|
|||||||
-- ---------------------------------------------------------------------
|
-- ---------------------------------------------------------------------
|
||||||
CREATE TABLE IF NOT EXISTS `tlayout_template` (
|
CREATE TABLE IF NOT EXISTS `tlayout_template` (
|
||||||
`id` INTEGER UNSIGNED NOT NULL AUTO_INCREMENT,
|
`id` INTEGER UNSIGNED NOT NULL AUTO_INCREMENT,
|
||||||
`name` varchar(50) NOT NULL,
|
`name` varchar(600) NOT NULL,
|
||||||
`id_group` INTEGER UNSIGNED NOT NULL,
|
`id_group` INTEGER UNSIGNED NOT NULL,
|
||||||
`background` varchar(200) NOT NULL,
|
`background` varchar(200) NOT NULL,
|
||||||
`height` INTEGER UNSIGNED NOT NULL default 0,
|
`height` INTEGER UNSIGNED NOT NULL default 0,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user