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

33 lines
1.7 KiB

  1. ALTER TABLE `player_foster`
  2. ADD COLUMN `click` int(11) NOT NULL DEFAULT 0 COMMENT '操作次数' AFTER `exp`;
  3. -- 经验副本里程碑数据
  4. -- hh
  5. CREATE TABLE `role_exp_dun_achieve`(
  6. `role_id` bigint(20) UNSIGNED NOT NULL COMMENT '人物id',
  7. `dun_id` int(11) UNSIGNED NOT NULL COMMENT '副本id',
  8. `wave` int(11) UNSIGNED NOT NULL COMMENT '里程碑波数',
  9. `status` tinyint(2) UNSIGNED NOT NULL DEFAULT 0 COMMENT '奖励领取状态',
  10. PRIMARY KEY(`role_id`, `dun_id`, `wave`)
  11. )ENGINE=InnoDB CHARSET=utf8 COMMENT='经验副本里程碑数据';
  12. -- zhaoyu
  13. CREATE TABLE IF NOT EXISTS `market_role_deal_log` (
  14. `id` bigint(20) UNSIGNED NOT NULL DEFAULT '0' COMMENT '交易Id',
  15. `role_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0' COMMENT '玩家Id',
  16. `rela_role_id` bigint(20) UNSIGNED NOT NULL DEFAULT '0' COMMENT '关联玩家Id',
  17. `goods_type_id` int(11) UNSIGNED NOT NULL DEFAULT '0' COMMENT '物品类型Id',
  18. `num` int(11) UNSIGNED NOT NULL DEFAULT '0' COMMENT '物品数量',
  19. `price` int(11) UNSIGNED NOT NULL DEFAULT '0' COMMENT '成交价格',
  20. `sell_type` int(11) UNSIGNED NOT NULL DEFAULT '1' COMMENT '上架类型:1:世界上架2:帮派上架',
  21. `guild_id` int(11) UNSIGNED NOT NULL DEFAULT '0' COMMENT '公会Id',
  22. `time` int(11) UNSIGNED NOT NULL DEFAULT '0' COMMENT '上架时间戳',
  23. `deal_time` int(11) UNSIGNED NOT NULL DEFAULT '0' COMMENT '成交时间戳',
  24. `deal_type` int(11) UNSIGNED NOT NULL DEFAULT '0' COMMENT '成交类型:1:竞价买入2:一口价买入3:卖出',
  25. `extra_attr` varchar(255) NOT NULL DEFAULT '[]' COMMENT '物品额外特殊属性',
  26. PRIMARY KEY (`id`, `role_id`)
  27. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='交易市场玩家个人成交记录';