源战役
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 line
1.0 KiB

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