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

18 lines
1012 B

  1. -- zmh
  2. CREATE TABLE `role_nucleon` (
  3. `rid` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '玩家ID',
  4. `lv` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '灵能级',
  5. `holes` varchar(100) NOT NULL DEFAULT '[]' COMMENT '技能',
  6. `breaks` varchar(100) NOT NULL DEFAULT '[]' 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='灵能-合服保留';