Files
junhong_cmp_fiber/migrations/archive/000101_add_activated_polling_config.up.sql

13 lines
520 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
-- 新增 activated 轮询配置:覆盖已实名+在线的卡
-- 修复问题activated 状态的卡无匹配配置导致不被轮询,套餐过期后无法触发停机
INSERT INTO tb_polling_config (
config_name, card_condition, card_category, carrier_id,
priority, realname_check_interval, carddata_check_interval, package_check_interval,
status, created_at, updated_at
) VALUES (
'已激活在线卡', 'activated', 'normal', 1566,
2, 30, 60, 60,
1, NOW(), NOW()
)
ON CONFLICT DO NOTHING;