9 lines
388 B
SQL
9 lines
388 B
SQL
-- 回滚初始化数据
|
||
-- 删除由 000115_init_data.up.sql 插入的轮询配置行
|
||
-- purchase_role 回填不需要 rollback(历史数据回填,回滚会破坏数据一致性)
|
||
|
||
DELETE FROM tb_polling_config
|
||
WHERE config_name = '停机卡轮询'
|
||
AND card_condition = 'suspended'
|
||
AND description = '停机卡每小时检查实名/流量/套餐,满足条件时自动复机';
|