源战役
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

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