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

  1. -- zmh 新手任务领取
  2. CREATE TABLE `player_newer_task` (
  3. `rid` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '角色id',
  4. `type` int(11) NOT NULL DEFAULT '0' COMMENT '类型',
  5. `task_id` int(11) NOT NULL DEFAULT '0' COMMENT '任务',
  6. `time` int(11) NOT NULL COMMENT '时间',
  7. PRIMARY KEY (`rid`,`type`,`task_id`),
  8. KEY `rid` (`rid`),
  9. KEY `type` (`type`)
  10. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='任务领取记录';