Fix sending mails for reports an templates reports by cronjobs - #1611
This commit is contained in:
parent
20720c9f0b
commit
afcd03658e
|
@ -2,6 +2,7 @@ START TRANSACTION;
|
||||||
|
|
||||||
ALTER TABLE tsnmp_filter ADD unified_filters_id int(10) NOT NULL DEFAULT 0;
|
ALTER TABLE tsnmp_filter ADD unified_filters_id int(10) NOT NULL DEFAULT 0;
|
||||||
ALTER TABLE treport_content_template ADD COLUMN hide_no_data tinyint(1) DEFAULT 0;
|
ALTER TABLE treport_content_template ADD COLUMN hide_no_data tinyint(1) DEFAULT 0;
|
||||||
|
ALTER TABLE treport_content ADD COLUMN hide_no_data tinyint(1) DEFAULT 0;
|
||||||
ALTER TABLE tgraph_source ADD COLUMN `order` int(10) NOT NULL default 0;
|
ALTER TABLE tgraph_source ADD COLUMN `order` int(10) NOT NULL default 0;
|
||||||
|
|
||||||
COMMIT;
|
COMMIT;
|
|
@ -1287,6 +1287,7 @@ ALTER TABLE treport_content ADD COLUMN `historical_db` tinyint(1) NOT NULL DEFAU
|
||||||
ALTER TABLE treport_content ADD COLUMN `lapse_calc` tinyint(1) default '0';
|
ALTER TABLE treport_content ADD COLUMN `lapse_calc` tinyint(1) default '0';
|
||||||
ALTER TABLE treport_content ADD COLUMN `lapse` int(11) default '300';
|
ALTER TABLE treport_content ADD COLUMN `lapse` int(11) default '300';
|
||||||
ALTER TABLE treport_content ADD COLUMN `visual_format` tinyint(1) default '0';
|
ALTER TABLE treport_content ADD COLUMN `visual_format` tinyint(1) default '0';
|
||||||
|
ALTER TABLE treport_content ADD COLUMN `hide_no_data` tinyint(1) default '0';
|
||||||
|
|
||||||
-- ---------------------------------------------------------------------
|
-- ---------------------------------------------------------------------
|
||||||
-- Table `tmodule_relationship`
|
-- Table `tmodule_relationship`
|
||||||
|
|
|
@ -1277,6 +1277,7 @@ CREATE TABLE IF NOT EXISTS `treport_content` (
|
||||||
`lapse_calc` tinyint(1) UNSIGNED NOT NULL default '0',
|
`lapse_calc` tinyint(1) UNSIGNED NOT NULL default '0',
|
||||||
`lapse` int(11) UNSIGNED NOT NULL default '300',
|
`lapse` int(11) UNSIGNED NOT NULL default '300',
|
||||||
`visual_format` tinyint(1) UNSIGNED NOT NULL default '0',
|
`visual_format` tinyint(1) UNSIGNED NOT NULL default '0',
|
||||||
|
`hide_no_data` tinyint(1) default 0,
|
||||||
PRIMARY KEY(`id_rc`),
|
PRIMARY KEY(`id_rc`),
|
||||||
FOREIGN KEY (`id_report`) REFERENCES treport(`id_report`)
|
FOREIGN KEY (`id_report`) REFERENCES treport(`id_report`)
|
||||||
ON UPDATE CASCADE ON DELETE CASCADE
|
ON UPDATE CASCADE ON DELETE CASCADE
|
||||||
|
|
Loading…
Reference in New Issue