Files
junhong_cmp_fiber/migrations/000206_fix_polling_concurrency_task_configs.down.sql
break f6b11eb9ac
All checks were successful
构建并部署到测试环境(无 SSH) / build-and-deploy (push) Successful in 8m23s
修复
2026-08-10 17:37:55 +08:00

8 lines
310 B
SQL

-- 回滚至旧的四项配置集合。
DELETE FROM tb_polling_concurrency_config
WHERE task_type IN ('protect', 'card_status');
INSERT INTO tb_polling_concurrency_config (task_type, max_concurrency, description)
VALUES ('stop_start', 50, '停复机检查最大并发数')
ON CONFLICT (task_type) DO NOTHING;