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

17 lines
647 B

  1. -- liushl
  2. -- 删除旧系统-离线挂机
  3. drop table if exists log_onhook;
  4. drop table if exists log_onhook_result;
  5. drop table if exists role_onhook;
  6. ALTER TABLE `log_local_vie_rank`
  7. ADD COLUMN `dtime` int(11) NOT NULL DEFAULT 0 COMMENT '有效时间' AFTER `rtime`;
  8. ALTER TABLE `log_vie_rank`
  9. ADD COLUMN `dtime` int(11) NOT NULL DEFAULT 0 COMMENT '有效时间' AFTER `rtime`;
  10. alter table player_state
  11. add column `passive_skill` varchar(5000) NOT NULL DEFAULT '[]' COMMENT '被动技能列表##离线保存' after last_be_kill,
  12. add column `attr` varchar(5000) NOT NULL DEFAULT '[]' COMMENT '玩家属性##离线保存' after passive_skill;