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

56 lines
2.9 KiB

  1. -- 2020-08-15
  2. -- tyl
  3. -- 废土战场
  4. alter table wasteland_war add column `war_field` int(11) UNSIGNED NOT NULL DEFAULT '0' COMMENT '战场数' after `role_name`;
  5. ALTER TABLE `role_guild_collect`
  6. ADD COLUMN `collect_count` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '本次活动采集次数' AFTER `last_enter_time`;
  7. -- huangyongxing
  8. -- 弹珠活动奖励记录
  9. CREATE TABLE `pellet_award_records` (
  10. `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '自增id',
  11. `role_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '角色id',
  12. `name` varchar(100) NOT NULL COMMENT '角色名',
  13. `goods_type_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '道具配置id',
  14. `goods_num` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT '道具数量',
  15. `get_type` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '获取方式(0抽奖 1累计次数奖励)',
  16. `time` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '获得时间',
  17. PRIMARY KEY (`id`)
  18. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='弹珠活动奖励记录';
  19. ALTER TABLE `player_guild`
  20. MODIFY COLUMN `order` varchar(500) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '[]' COMMENT '已接单' AFTER `red_gold_packet`;
  21. -- zmh
  22. -- 全民动员 进度管理
  23. CREATE TABLE `mobilize_fake_cord`(
  24. `task_type` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '任务类型',
  25. `fake_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '假数据id',
  26. `stime` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '开始时间',
  27. `etime` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '截止时间',
  28. `ltime` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '上次更新',
  29. `remain_score` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '应补助分',
  30. `per_score` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '单次补助分',
  31. `remain_times` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '补助频率',
  32. `remain_click` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '补助计数器',
  33. `process` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '目前进度',
  34. PRIMARY KEY(`task_type`, `fake_id`)
  35. )ENGINE=InnoDB CHARSET=utf8 COMMENT="全民动员 合服保留主服";
  36. -- liushl
  37. CREATE TABLE `madness_land_zone_role_rank`(
  38. `zone_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '分区id',
  39. `rank` int(11) NOT NULL DEFAULT '0' COMMENT '排名',
  40. `role_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '玩家ID',
  41. `name` varchar(255) NOT NULL DEFAULT '' COMMENT '角色名称',
  42. `sex` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '性别',
  43. `vip` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'vip等级',
  44. `sup_vip` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '贵族',
  45. `server_num` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '服务器号',
  46. `score` int(11) NOT NULL DEFAULT '0' COMMENT '积分',
  47. PRIMARY KEY(`zone_id`, `rank`)
  48. )ENGINE=InnoDB CHARSET=utf8 COMMENT="狂战领域-跨服个人排名(合服保留)";