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

21 line
948 B

  1. -- liushl
  2. CREATE TABLE `client_event_data`(
  3. `role_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '玩家ID',
  4. `event_id` smallint(11) unsigned NOT NULL DEFAULT '0' COMMENT '事件id##由前端自定义,一般是从1递增',
  5. `state` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '事件状态',
  6. PRIMARY KEY(`role_id`, `event_id`)
  7. )ENGINE=InnoDB CHARSET=utf8 COMMENT="前端终身事件列表(合服保留)";
  8. -- jiangxun
  9. -- 魂力升级时间升级改为物品升级
  10. ALTER TABLE `role_uranium`
  11. DROP COLUMN `init_time`,
  12. DROP COLUMN `start_time`,
  13. DROP COLUMN `quick_time`,
  14. ADD COLUMN `have_energy` int(11) ZEROFILL NOT NULL COMMENT '玩家当前等级持有的能量' AFTER `lv`;
  15. -- tyl
  16. -- 七日目标调整
  17. truncate table seven_day_task;
  18. truncate table seven_days_goal;
  19. alter table seven_day_task drop column `diff`;
  20. alter table seven_day_task drop PRIMARY KEY, add PRIMARY KEY (`role_id`,`days`,`mod_id`,`sub_id`);