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

36 lines
2.1 KiB

  1. -- zmh
  2. -- 魂力增加额外充能
  3. ALTER TABLE `role_uranium`
  4. ADD COLUMN `quick_time` int(11) NOT NULL DEFAULT 0 COMMENT '充能时间' AFTER `start_time`;
  5. -- tyl
  6. -- 阶段兑换日志表
  7. CREATE TABLE `log_phase_exchange` (
  8. `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'id',
  9. `sub_type` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '活动子类型',
  10. `role_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '角色Id',
  11. `role_name` varchar(255) NOT NULL DEFAULT '' COMMENT '角色名称',
  12. `role_lv` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '玩家等级',
  13. `lv_need` varchar(255) NOT NULL DEFAULT '' COMMENT '奖励等级范围',
  14. `store_id` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '阶段',
  15. `grade` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '奖励档次',
  16. `type` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '类型 1-兑换 2-开启阶段',
  17. `reward_list` varchar(255) NOT NULL DEFAULT '' COMMENT '奖励列表',
  18. `goods_cost` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '消耗物品Id',
  19. `num_cost` mediumint(5) unsigned NOT NULL DEFAULT '0' COMMENT '消耗数量',
  20. `time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '时间戳',
  21. PRIMARY KEY (`id`)
  22. ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='阶段兑换日志表';
  23. -- ljy
  24. -- 冒险征程日志表
  25. CREATE TABLE `log_adventure_lottery` (
  26. `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'id',
  27. `role_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0 COMMENT '玩家id',
  28. `type` tinyint(5) UNSIGNED NOT NULL DEFAULT 0 COMMENT '抽奖类型',
  29. `grade_list` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '' COMMENT '奖励id列表',
  30. `score` smallint(5) UNSIGNED NOT NULL DEFAULT 0 COMMENT '热点值',
  31. `progress` smallint(5) UNSIGNED NOT NULL DEFAULT 0 COMMENT '进度值',
  32. `time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '时间',
  33. PRIMARY KEY (`id`) USING BTREE,
  34. INDEX `role_id`(`role_id`) USING BTREE
  35. ) ENGINE = InnoDB AUTO_INCREMENT = 7 CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '冒险征程抽奖日志' ROW_FORMAT = Dynamic;