pandorafms/pandora_console/extras/mr/45.sql

10 lines
374 B
MySQL
Raw Normal View History

2021-02-25 13:18:04 +01:00
START TRANSACTION;
ALTER TABLE `talert_actions` ADD COLUMN `create_wu_integria` TINYINT(1) default NULL;
ALTER TABLE `tinventory_alert` ADD COLUMN `alert_groups` TEXT NOT NULL;
UPDATE `tinventory_alert` t1 INNER JOIN `tinventory_alert` t2 ON t1.id = t2.id SET t1.alert_groups = t2.id_group;
2021-02-26 12:48:23 +01:00
ALTER TABLE `tnotification_source` ADD COLUMN `subtype_blacklist` TEXT;
2021-02-25 13:18:04 +01:00
COMMIT;