|
|
- -- tyl
- -- 废土战场
- CREATE TABLE `wasteland_war` (
- `server_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '服务器Id',
- `role_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '角色Id',
- `role_name` varchar(255) NOT NULL DEFAULT '' COMMENT '角色名称',
- `round` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '轮数',
- `rank` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '排行',
- `score` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '积分',
- `kill_num` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '最大击杀数',
- `max_combo` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '最大连杀数',
- `sex` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '性别',
- `vip_lv` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'vip等级',
- `sup_vip` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '贵族',
- `server_num` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '服务器号',
- PRIMARY KEY (`server_id`,`role_id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='废土战场-排行榜数据';
|