Files
wucaixing-backend/sql/alter_pay_wallet_freeze_status_20260509.sql
2026-05-13 16:14:53 +08:00

6 lines
204 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- pay_wallet 新增冻结状态字段
-- 0=正常 1=冻结
ALTER TABLE `pay_wallet`
ADD COLUMN `freeze_status` TINYINT NULL DEFAULT 0 COMMENT '冻结状态0=正常 1=冻结' AFTER `wallet_type`;