From 295f2d2784cfb11b34dc48ff356848ef10b107fd Mon Sep 17 00:00:00 2001 From: bash Date: Sun, 15 Feb 2026 20:46:42 +0100 Subject: [PATCH] Revert "Convert PlayerBots tables to InnoDB (#2083)" This reverts commit c86032f43b7bccb861c33769385db7a522e75513. --- .../updates/2026_01_30_00_change_to_InnoDB.sql | 9 --------- .../updates/2026_01_30_00_change_to_InnoDB.sql | 18 ------------------ 2 files changed, 27 deletions(-) delete mode 100644 data/sql/characters/updates/2026_01_30_00_change_to_InnoDB.sql delete mode 100644 data/sql/playerbots/updates/2026_01_30_00_change_to_InnoDB.sql diff --git a/data/sql/characters/updates/2026_01_30_00_change_to_InnoDB.sql b/data/sql/characters/updates/2026_01_30_00_change_to_InnoDB.sql deleted file mode 100644 index 8c2c226b5..000000000 --- a/data/sql/characters/updates/2026_01_30_00_change_to_InnoDB.sql +++ /dev/null @@ -1,9 +0,0 @@ --- Temporarily disables innodb_strict_mode for the session to allow the script to complete even if legacy table definitions contain InnoDB-incompatible attributes -SET SESSION innodb_strict_mode = 0; - --- Change the tables to InnoDB -ALTER TABLE playerbots_guild_names ENGINE=InnoDB; -ALTER TABLE playerbots_names ENGINE=InnoDB; - --- Re-enables innodb_strict_mode -SET SESSION innodb_strict_mode = 1; diff --git a/data/sql/playerbots/updates/2026_01_30_00_change_to_InnoDB.sql b/data/sql/playerbots/updates/2026_01_30_00_change_to_InnoDB.sql deleted file mode 100644 index c7f9c51f0..000000000 --- a/data/sql/playerbots/updates/2026_01_30_00_change_to_InnoDB.sql +++ /dev/null @@ -1,18 +0,0 @@ --- Temporarily disables innodb_strict_mode for the session to allow the script to complete even if legacy table definitions contain InnoDB-incompatible attributes -SET SESSION innodb_strict_mode = 0; - --- Change the tables to InnoDB -ALTER TABLE playerbots_dungeon_suggestion_abbrevation ENGINE=InnoDB; -ALTER TABLE playerbots_dungeon_suggestion_definition ENGINE=InnoDB; -ALTER TABLE playerbots_dungeon_suggestion_strategy ENGINE=InnoDB; -ALTER TABLE playerbots_equip_cache ENGINE=InnoDB; -ALTER TABLE playerbots_item_info_cache ENGINE=InnoDB; -ALTER TABLE playerbots_rarity_cache ENGINE=InnoDB; -ALTER TABLE playerbots_rnditem_cache ENGINE=InnoDB; -ALTER TABLE playerbots_tele_cache ENGINE=InnoDB; -ALTER TABLE playerbots_travelnode ENGINE=InnoDB; -ALTER TABLE playerbots_travelnode_link ENGINE=InnoDB; -ALTER TABLE playerbots_travelnode_path ENGINE=InnoDB; - --- Re-enables innodb_strict_mode -SET SESSION innodb_strict_mode = 1;