feat: 支付产品配置增加 enabled 启停开关字段

This commit is contained in:
DaxPay Dev
2026-06-17 13:50:22 +08:00
parent 1fc1a11931
commit da3749a09a
8 changed files with 40 additions and 0 deletions

View File

@@ -1,2 +1,5 @@
-- 订单商品明细列表
ALTER TABLE pay_normal_order ADD COLUMN IF NOT EXISTS goods_detail jsonb;
-- 支付产品配置增加启用/停用开关
ALTER TABLE pay_product_config ADD COLUMN IF NOT EXISTS enabled boolean NOT NULL DEFAULT TRUE;