源战役
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

18 lines
1012 B

-- zmh
CREATE TABLE `role_nucleon` (
`rid` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '玩家ID',
`lv` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '灵能级',
`holes` varchar(100) NOT NULL DEFAULT '[]' COMMENT '技能',
`breaks` varchar(100) NOT NULL DEFAULT '[]' COMMENT '觉醒',
`normal` int(11) NOT NULL DEFAULT '0' COMMENT '普通已抽次数',
`ntime` int(11) NOT NULL DEFAULT '0' COMMENT '上次免费操作时间',
`nfirst` int(11) NOT NULL DEFAULT '0' COMMENT '普通首次',
`nstate` varchar(100) NOT NULL DEFAULT '[]' COMMENT '普通状态',
`special` int(11) NOT NULL DEFAULT '0' COMMENT '特别已抽次数',
`stime` int(11) NOT NULL DEFAULT '0' COMMENT '上次特殊已抽时间',
`sfirst` int(11) NOT NULL DEFAULT '0' COMMENT '特殊首次',
`estate` varchar(100) NOT NULL DEFAULT '[]' COMMENT '特殊状态',
`rtime` int(11) NOT NULL DEFAULT '0' COMMENT '刷新时间',
PRIMARY KEY (`rid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='灵能-合服保留';