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

8 lines
544 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.
-- 移除 DiceRewardConfig 表的 s_start_index、n_start_index 字段
-- 起始索引已迁移至 dice_reward.start_index开局逻辑与列表均不再依赖 config 的这两列
-- 执行前请确认:已运行「创建奖励对照」且 dice_reward 中 start_index 已正确写入
-- 若 MySQL < 8.0.23 不支持 DROP COLUMN IF EXISTS可改为 DROP COLUMN 并忽略“列不存在”错误
ALTER TABLE `dice_reward_config` DROP COLUMN IF EXISTS `s_start_index`;
ALTER TABLE `dice_reward_config` DROP COLUMN IF EXISTS `n_start_index`;