Files
MBTI_wang/api/migrations/add_feeFen_to_distribution_withdrawals.sql
2026-03-17 12:39:38 +08:00

5 lines
298 B
SQL

-- 为提现记录表增加手续费字段(已有库执行)
-- 表名以实际前缀为准,若为 mbti_ 则表名为 mbti_distribution_withdrawals
ALTER TABLE `mbti_distribution_withdrawals`
ADD COLUMN `feeFen` int(11) NOT NULL DEFAULT 0 COMMENT '手续费(分)' AFTER `amountFen`;