Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
-- zhaoyu
|
|
ALTER TABLE `log_arena_season_rank`
|
|
MODIFY COLUMN `season_id` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '赛季Id' AFTER `id`;
|
|
|
|
CREATE TABLE IF NOT EXISTS `player_visus_skill` (
|
|
`role_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0' COMMENT '玩家Id',
|
|
`skill_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '当前使用的技能Id',
|
|
PRIMARY KEY (`role_id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='幻光功能-玩家当前使用的技能Id';
|
|
|
|
|