源战役
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 line
500 B

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