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

11 lines
500 B

-- zmh
-- 星辰图鉴数据
CREATE TABLE `player_galaxy` (
`rid` bigint(20) unsigned NOT NULL COMMENT '角色id',
`type` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '星群',
`subtype` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '星团',
`gain` varchar(500) NOT NULL DEFAULT '[]' COMMENT '已收集',
`state` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '状态',
PRIMARY KEY (`rid`,`type`,`subtype`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='星辰图鉴数据合服保留';