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

6 lines
354 B

  1. -- zmh
  2. CREATE TABLE role_visus(
  3. `rid` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '玩家ID',
  4. `refresh_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '更新时间',
  5. `login_days` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '天数',
  6. PRIMARY KEY (`rid`)
  7. )ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='玩家幻光(合服保留)';