fix(sql): 收银台支付项图标值迁移对齐 PayProviderEnum 编码(union→union_pay, aggregate→aggregate_pay)

This commit is contained in:
DaxPay Dev
2026-07-12 11:55:11 +08:00
parent 81a51bef5b
commit 57be55f749

View File

@@ -0,0 +1,4 @@
-- 收银台支付项图标值对齐 PayProviderEnum 编码union → union_pay, aggregate → aggregate_pay
UPDATE pay_gateway_cashier_item SET icon = 'union_pay' WHERE icon = 'union';
UPDATE pay_gateway_cashier_item SET icon = 'aggregate_pay' WHERE icon = 'aggregate';