Files
dafuweng-saiadmin6.x/server/db/dice_player_add_free_ticket.sql
2026-04-28 10:24:01 +08:00

7 lines
269 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.
-- 玩家表新增 free_ticket 字段用于记录免费抽奖券JSON{"ante":1,"count":1}
-- 若已存在可跳过
ALTER TABLE `dice_player`
ADD COLUMN `free_ticket` json NULL COMMENT '免费抽奖券:{"ante":1,"count":1}' AFTER `free_ticket_count`;