Files
junhong_cmp_fiber/migrations/000145_relax_agent_recharge_amount_constraint.down.sql
huang 480d4c4583
All checks were successful
构建并部署到测试环境(无 SSH) / build-and-deploy (push) Successful in 7m59s
1
2026-05-18 10:34:04 +08:00

9 lines
379 B
SQL

-- 回滚为历史规则:代理预充值最低 100 元。
ALTER TABLE tb_agent_recharge_record
DROP CONSTRAINT IF EXISTS chk_agent_recharge_amount;
ALTER TABLE tb_agent_recharge_record
ADD CONSTRAINT chk_agent_recharge_amount CHECK (amount >= 10000);
COMMENT ON COLUMN tb_agent_recharge_record.amount IS '充值金额(单位:分,最小 10000 分 = 100 元)';