mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-28 16:24:54 +02:00
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:
commit
9f66f6c269
@ -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;
|
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;
|
||||||
|
@ -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');
|
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;
|
||||||
|
@ -2216,6 +2216,7 @@ CREATE TABLE IF NOT EXISTS `tdashboard` (
|
|||||||
`id_group` int(10) NOT NULL default 0,
|
`id_group` int(10) NOT NULL default 0,
|
||||||
`active` tinyint(1) NOT NULL default 0,
|
`active` tinyint(1) NOT NULL default 0,
|
||||||
`cells` int(10) unsigned default 0,
|
`cells` int(10) unsigned default 0,
|
||||||
|
`cells_slideshow` TINYINT(1) NOT NULL default 0,
|
||||||
PRIMARY KEY (`id`)
|
PRIMARY KEY (`id`)
|
||||||
) ENGINE = InnoDB DEFAULT CHARSET=utf8;
|
) ENGINE = InnoDB DEFAULT CHARSET=utf8;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user