Merge branch 'varias-consolas-visuales-en-un-solo-dashboard-modo-slideshow-opcional' into 'develop'

[artica/pandora_enterprise#1462] Added the DB changes needed by the dashboard items slideshow feature

See merge request artica/pandorafms!951
This commit is contained in:
vgilc 2017-11-16 11:03:01 +01:00
commit 9f66f6c269
3 changed files with 8 additions and 1 deletions

View File

@ -18,4 +18,6 @@ alter table tlayout_data add column id_layout_linked_weight int(10) not null def
ALTER TABLE tlayout_data ADD COLUMN show_on_top tinyint(1) default 0;
COMMIT;
ALTER TABLE `tdashboard` ADD COLUMN `cells_slideshow` TINYINT(1) NOT NULL default 0;
COMMIT;

View File

@ -1461,3 +1461,7 @@ INSERT INTO tmodule VALUES (8, 'Wux module');
INSERT INTO ttipo_modulo VALUES (25,'web_analysis', 8, 'Web analysis data', 'module-wux.png');
-- ---------------------------------------------------------------------
-- Table `tdashboard`
-- ---------------------------------------------------------------------
ALTER TABLE `tdashboard` ADD COLUMN `cells_slideshow` TINYINT(1) NOT NULL default 0;

View File

@ -2216,6 +2216,7 @@ CREATE TABLE IF NOT EXISTS `tdashboard` (
`id_group` int(10) NOT NULL default 0,
`active` tinyint(1) NOT NULL default 0,
`cells` int(10) unsigned default 0,
`cells_slideshow` TINYINT(1) NOT NULL default 0,
PRIMARY KEY (`id`)
) ENGINE = InnoDB DEFAULT CHARSET=utf8;