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

This commit is contained in:
Alejandro Gallardo Escobar 2017-10-18 17:29:06 +02:00
parent 7121d4a343
commit b641323eed
3 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,4 @@
START TRANSACTION;
ALTER TABLE `tdashboard` ADD COLUMN `cells_slideshow` TINYINT(1) NOT NULL default 0;
COMMIT;

View File

@ -1440,3 +1440,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

@ -2206,6 +2206,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;