源战役
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 

17 rindas
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='角色转职日志';