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

6 lines
286 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.
-- 为 dice_player 表新增 admin_id 字段
-- admin_id 关联 sa_system_user.id表示创建该玩家的后台管理员
ALTER TABLE `dice_player`
ADD COLUMN `admin_id` int(11) UNSIGNED NULL DEFAULT NULL COMMENT '创建该玩家的后台管理员ID关联 sa_system_user.id';