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

13 lines
449 B

  1. -- hh
  2. ALTER TABLE `role_exp_dun_drop`
  3. DROP COLUMN `fast_hook_time`;
  4. CREATE TABLE `role_fast_exp`(
  5. `role_id` bigint(20) UNSIGNED NOT NULL COMMENT '人物id',
  6. `fast_hook_time` int(11) UNSIGNED NOT NULL COMMENT '快速挂机时间',
  7. PRIMARY KEY(`role_id`)
  8. )ENGINE=InnoDB CHARSET=utf8 COMMENT="经验副本快速挂机数据";
  9. ALTER TABLE `player_devour`
  10. ADD COLUMN `is_auto` int(11) NOT NULL DEFAULT 0 COMMENT '是否自动吞噬';