mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-29 16:55:05 +02:00
[artica/pandora_enterprise#1462] Added the DB changes needed by the dashboard items slideshow feature
This commit is contained in:
parent
7121d4a343
commit
b641323eed
4
pandora_console/extras/mr/9.sql
Normal file
4
pandora_console/extras/mr/9.sql
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
|
||||||
|
START TRANSACTION;
|
||||||
|
ALTER TABLE `tdashboard` ADD COLUMN `cells_slideshow` TINYINT(1) NOT NULL default 0;
|
||||||
|
COMMIT;
|
@ -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');
|
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;
|
||||||
|
@ -2206,6 +2206,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