源战役
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.
 
 

17 lignes
736 B

-- zhaoyu
-- 转职觉醒
CREATE TABLE IF NOT EXISTS `transform_info` (
`role_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '角色Id',
`transform_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '转职Id',
`stage` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '阶段',
PRIMARY KEY (`role_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='角色转职数据';
CREATE TABLE IF NOT EXISTS `log_transform` (
`role_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '角色Id',
`transform_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '转职Id',
`time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '时间戳',
PRIMARY KEY (`role_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='角色转职日志';