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

20 lines
1000 B

  1. -- tyl 新成就库表
  2. DROP TABLE IF EXISTS `achievement`;
  3. CREATE TABLE `achievement` (
  4. `role_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '玩家id',
  5. `type` smallint(6) unsigned NOT NULL DEFAULT '0' COMMENT '成就大类',
  6. `sub_type` smallint(6) unsigned NOT NULL DEFAULT '0' COMMENT '小类',
  7. `id` int(11) NOT NULL,
  8. `progress` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '进度',
  9. `status` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '状态',
  10. `time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '更新时间',
  11. PRIMARY KEY (`role_id`,`type`,`sub_type`,`id`)
  12. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='玩家成就数据';
  13. -- zmh
  14. CREATE TABLE `task_daily` (
  15. `rid` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '玩家id',
  16. `dailys` varchar(300) NOT NULL DEFAULT '[]' COMMENT '奖励',
  17. `time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '时间',
  18. PRIMARY KEY (`rid`)
  19. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='玩家跑环奖励(合服保留)';