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

5 lines
380 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_reward 表增加自增主键 id原复合主键改为唯一索引以保证 (tier,direction,end_index) 不重复
ALTER TABLE `dice_reward` DROP PRIMARY KEY;
ALTER TABLE `dice_reward` ADD COLUMN `id` bigint unsigned NOT NULL AUTO_INCREMENT FIRST, ADD PRIMARY KEY (`id`);
ALTER TABLE `dice_reward` ADD UNIQUE KEY `uk_tier_direction_end` (`tier`, `direction`, `end_index`);