mirror of
https://gitee.com/wanwujie/sub2api
synced 2026-04-11 02:24:45 +08:00
8 lines
218 B
MySQL
8 lines
218 B
MySQL
|
|
-- Enable webhook notifications for rules with webhook_url configured
|
||
|
|
|
||
|
|
UPDATE ops_alert_rules
|
||
|
|
SET notify_webhook = TRUE
|
||
|
|
WHERE webhook_url IS NOT NULL
|
||
|
|
AND webhook_url <> ''
|
||
|
|
AND notify_webhook IS DISTINCT FROM TRUE;
|