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

9 lines
490 B

  1. -- zmh
  2. CREATE TABLE role_uranium(
  3. `rid` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '玩家ID',
  4. `grade` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '阶位',
  5. `lv` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '等级',
  6. `init_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '初始时间',
  7. `start_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '时间头',
  8. PRIMARY KEY (`rid`)
  9. )ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='玩家魂力(合服保留)';