Merge branch '1611-No-se-envían-los-informes-por-correo-desde-Metaconsola-4881-vodat' into 'develop'
Fix sending mails for reports an templates reports by cronjobs - #1611 See merge request artica/pandorafms!1162
This commit is contained in:
commit
6d3715a25f
|
@ -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 `field_order` int(10) NOT NULL default 0;
|
ALTER TABLE tgraph_source ADD COLUMN `field_order` int(10) NOT NULL default 0;
|
||||||
UPDATE tgraph_source c, (SELECT @n := 0) m SET c.field_order = @n := @n + 1;
|
UPDATE tgraph_source c, (SELECT @n := 0) m SET c.field_order = @n := @n + 1;
|
||||||
|
|
||||||
|
|
|
@ -1289,6 +1289,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`
|
||||||
|
|
|
@ -1278,6 +1278,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