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

102 lines
3.7 KiB

  1. -- 删除跨服BOSS,旧本服BOSS,婚姻相关
  2. drop table if exists boss;
  3. drop table if exists boss_sp;
  4. drop table if exists boss_remind;
  5. drop table if exists log_boss;
  6. drop table if exists log_boss_drop;
  7. drop table if exists log_boss_enter_type;
  8. drop table if exists log_boss_rank_reward;
  9. drop table if exists log_boss_reborn;
  10. drop table if exists kf_boss_remind;
  11. drop table if exists kf_boss_revive;
  12. drop table if exists log_kf_boss_drop;
  13. drop table if exists log_kf_boss_killer;
  14. drop table if exists log_marriage_answer;
  15. drop table if exists log_marriage_divorse;
  16. drop table if exists log_marriage_life_train;
  17. drop table if exists log_marriage_love_box;
  18. drop table if exists log_marriage_parade_end;
  19. drop table if exists log_marriage_parade_order;
  20. drop table if exists log_marriage_propose;
  21. drop table if exists log_marriage_ring_polish;
  22. drop table if exists log_marriage_ring_upgrade;
  23. drop table if exists log_marriage_wedding_aura;
  24. drop table if exists log_marriage_wedding_end;
  25. drop table if exists log_marriage_wedding_invitation;
  26. drop table if exists log_marriage_wedding_order;
  27. drop table if exists log_parade_follow;
  28. drop table if exists log_parade_wedding_aura;
  29. drop table if exists marriage_ask_time;
  30. drop table if exists marriage_couple_info;
  31. drop table if exists marriage_couple_propose;
  32. drop table if exists marriage_guidance;
  33. drop table if exists marriage_guidance_task;
  34. drop table if exists marriage_life_player;
  35. drop table if exists marriage_love_box;
  36. drop table if exists marriage_parade_order_info;
  37. drop table if exists marriage_personals_follow;
  38. drop table if exists marriage_personals_player;
  39. drop table if exists marriage_ring_player;
  40. drop table if exists marriage_wedding_guest;
  41. drop table if exists marriage_wedding_order_info;
  42. drop table if exists marriage_wedding_restart;
  43. -- huangyongxing
  44. -- 魂珠
  45. DROP TABLE IF EXISTS `log_dungeon_seal_soul`;
  46. -- 神格
  47. DROP TABLE IF EXISTS `deity`;
  48. DROP TABLE IF EXISTS `log_deity_up`;
  49. DROP TABLE IF EXISTS `player_deity`;
  50. -- 宝藏
  51. DROP TABLE IF EXISTS `treasure_guardians`;
  52. DROP TABLE IF EXISTS `log_treasure`;
  53. -- 婚礼榜
  54. DROP TABLE IF EXISTS `log_wed_rank`;
  55. DROP TABLE IF EXISTS `wed_rank_act`;
  56. -- 神秘限购
  57. DROP TABLE IF EXISTS `limit_shop_sell`;
  58. DROP TABLE IF EXISTS `log_limit_shop_buy`;
  59. -- 家族商店
  60. DROP TABLE IF EXISTS `player_guild_shop`;
  61. -- 圣器契约(永恒碑谷)
  62. DROP TABLE IF EXISTS `eternal_valley_chapter`;
  63. DROP TABLE IF EXISTS `eternal_valley_stage`;
  64. DROP TABLE IF EXISTS `log_eternal_valley_reward`;
  65. DROP TABLE IF EXISTS `log_eternal_valley_stage`;
  66. -- 天命觉醒
  67. DROP TABLE IF EXISTS `awakening`;
  68. DROP TABLE IF EXISTS `log_awakening`;
  69. -- 圣灵
  70. DROP TABLE IF EXISTS `log_spirit_lv_up`;
  71. -- 降神残留
  72. DROP TABLE IF EXISTS `god_rune_pos`;
  73. DROP TABLE IF EXISTS `log_god_active`;
  74. DROP TABLE IF EXISTS `log_god_active_pyx`;
  75. DROP TABLE IF EXISTS `log_god_active_rune`;
  76. DROP TABLE IF EXISTS `log_god_active_rune_pos`;
  77. DROP TABLE IF EXISTS `log_god_lv_up`;
  78. DROP TABLE IF EXISTS `log_god_pyx_lv`;
  79. DROP TABLE IF EXISTS `log_god_seal_lv_up`;
  80. DROP TABLE IF EXISTS `log_god_stren_rune`;
  81. DROP TABLE IF EXISTS `log_god_stren_rune_goods`;
  82. -- hh
  83. CREATE TABLE IF NOT EXISTS `role_guild_collect`(
  84. `role_id` bigint(20) UNSIGNED NOT NULL COMMENT '玩家id',
  85. `last_collect_time` int(11) UNSIGNED DEFAULT 0 COMMENT '最近一次封印时间',
  86. `last_enter_time` int(11) UNSIGNED DEFAULT 0 COMMENT '最近一次参与活动时间',
  87. PRIMARY KEY(`role_id`)
  88. )ENGINE=InnoDB CHARSET=utf8 COMMENT="玩家公会采集信息";
  89. DROP TABLE IF EXISTS `log_light_weapon_upgrade`;
  90. DROP TABLE IF EXISTS `log_light_weapon_uplv`;
  91. DROP TABLE IF EXISTS `log_light_weapon_upstar`;
  92. DROP TABLE IF EXISTS `log_god_active_rune`;
  93. DROP TABLE IF EXISTS `log_god_stren_rune`;
  94. DROP TABLE IF EXISTS `log_god_stren_rune_goods`;