diff --git a/pandora_console/extras/mr/9.sql b/pandora_console/extras/mr/9.sql index 87a238c2fa..195d8b2a6d 100644 --- a/pandora_console/extras/mr/9.sql +++ b/pandora_console/extras/mr/9.sql @@ -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; \ No newline at end of file +ALTER TABLE `tdashboard` ADD COLUMN `cells_slideshow` TINYINT(1) NOT NULL default 0; + +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 4f42b18b38..1e3378bf96 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 @@ -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; diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql index adc29a0362..72bd516e51 100644 --- a/pandora_console/pandoradb.sql +++ b/pandora_console/pandoradb.sql @@ -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;