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

39 lines
2.1 KiB

  1. -- zmh
  2. DROP TABLE IF EXISTS role_nucleon;
  3. CREATE TABLE `role_nucleon` (
  4. `rid` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '玩家ID',
  5. `lv` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '灵能级',
  6. `exp` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '灵能经验',
  7. `normal` int(11) NOT NULL DEFAULT '0' COMMENT '普通已抽次数',
  8. `ntime` int(11) NOT NULL DEFAULT '0' COMMENT '上次免费操作时间',
  9. `nfirst` int(11) NOT NULL DEFAULT '0' COMMENT '普通首次',
  10. `nstate` varchar(100) NOT NULL DEFAULT '[]' COMMENT '普通状态',
  11. `special` int(11) NOT NULL DEFAULT '0' COMMENT '特别已抽次数',
  12. `stime` int(11) NOT NULL DEFAULT '0' COMMENT '上次特殊已抽时间',
  13. `sfirst` int(11) NOT NULL DEFAULT '0' COMMENT '特殊首次',
  14. `estate` varchar(100) NOT NULL DEFAULT '[]' COMMENT '特殊状态',
  15. `rtime` int(11) NOT NULL DEFAULT '0' COMMENT '刷新时间',
  16. PRIMARY KEY (`rid`)
  17. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='灵能-合服保留';
  18. CREATE TABLE `player_nucleon` (
  19. `rid` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '玩家ID',
  20. `pos` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '槽位',
  21. `grade` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '阶段',
  22. `lv` int(11) NOT NULL DEFAULT '0' COMMENT '等级',
  23. `exp` int(11) NOT NULL DEFAULT '0' COMMENT '经验',
  24. `skill` int(11) NOT NULL DEFAULT '0' COMMENT '技能',
  25. `skill_lv` int(11) NOT NULL DEFAULT '0' COMMENT '技能等级',
  26. `sec_lv` int(11) NOT NULL DEFAULT '0' COMMENT '觉醒等级',
  27. `attrs` varchar(100) NOT NULL DEFAULT '[]' COMMENT '属性',
  28. PRIMARY KEY (`rid`)
  29. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='灵能槽位-合服保留';
  30. -- zmh
  31. DROP TABLE IF EXISTS custom_act_journey;
  32. CREATE TABLE `custom_act_journey` (
  33. `rid` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '玩家ID',
  34. `act` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '活动ID',
  35. `map` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '地图',
  36. `tasks` varchar(600) NOT NULL DEFAULT '[]' COMMENT '任务',
  37. PRIMARY KEY (`rid`,`act`,`map`)
  38. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='征途-合服保留';