pandorafms/pandora_console/extras/mr/37.sql

12 lines
536 B
MySQL
Raw Normal View History

2020-03-23 12:47:58 +01:00
START TRANSACTION;
ALTER TABLE `tagente_estado` ADD COLUMN `last_status_change` bigint(20) NOT NULL default '0';
UPDATE `tconfig` SET `value`='policy,agent,data_type,module_name,server_type,interval,status,last_status_change,graph,warn,data,timestamp' WHERE `token` = 'status_monitor_fields';
2020-03-23 11:34:37 +01:00
ALTER TABLE `talert_templates` ADD COLUMN `disable_event` tinyint(1) DEFAULT 0;
ALTER TABLE `tevent_alert` ADD COLUMN `disable_event` tinyint(1) DEFAULT 0;
ALTER TABLE `talert_snmp` ADD COLUMN `disable_event` tinyint(1) DEFAULT 0;
2020-03-23 12:47:58 +01:00
2020-03-23 11:34:37 +01:00
COMMIT;