1 changed files with 9 additions and 0 deletions
@ -0,0 +1,9 @@ |
|||
ALTER TABLE `alert_history` |
|||
MODIFY COLUMN `handle_status` int DEFAULT '0' |
|||
COMMENT '处理状态:0-未确认,1-未对应,2-对应中(现场处理中),3-完了,4-自动恢复,5-对应了待恢复,6-联系中(对方不在,或者打电话)'; |
|||
|
|||
|
|||
UPDATE `alert_history` SET `handle_status` = 0 WHERE `confirm_status` = 0; |
|||
|
|||
|
|||
ALTER TABLE alert_history ADD `confirmer` varchar(100) DEFAULT NULL COMMENT '告警确认者'; |
|||
Loading…
Reference in new issue