aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorOvahlord <dreadkiller@gmx.de>2023-11-23 02:31:31 +0100
committerOvahlord <dreadkiller@gmx.de>2023-11-23 02:31:31 +0100
commitbba8e6fe41b4f41f647c08c17e8fcc09283fdfa8 (patch)
tree953d4ec2c24f0a2ba6b66a832bd2a4c63edc9b15 /sql
parent40ddd29d03b862765bceac0caa435bd9352c77b8 (diff)
Core/Items: downgrade items part 1: removed item bonus generation, artifact weapon handling and azerite item mechanics
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/characters/3.4.x/2023_11_22_00_characters.sql19
1 files changed, 19 insertions, 0 deletions
diff --git a/sql/updates/characters/3.4.x/2023_11_22_00_characters.sql b/sql/updates/characters/3.4.x/2023_11_22_00_characters.sql
new file mode 100644
index 00000000000..97c316db5ce
--- /dev/null
+++ b/sql/updates/characters/3.4.x/2023_11_22_00_characters.sql
@@ -0,0 +1,19 @@
+ALTER TABLE `item_instance`
+ DROP COLUMN `bonusListIDs`,
+ DROP COLUMN `randomBonusListId`;
+
+DROP TABLE IF EXISTS `item_instance_artifact`;
+DROP TABLE IF EXISTS `item_instance_artifact_powers`;
+DROP TABLE IF EXISTS `item_instance_azerite`;
+DROP TABLE IF EXISTS `item_instance_azerite_empowered`;
+DROP TABLE IF EXISTS `item_instance_azerite_milestone_power`;
+DROP TABLE IF EXISTS `item_instance_azerite_unlocked_essence`;
+
+ALTER TABLE `character_void_storage`
+ DROP COLUMN `randomBonusListId`,
+ DROP COLUMN `artifactKnowledgeLevel`,
+ DROP COLUMN `bonusListIDs`;
+
+ALTER TABLE `item_loot_items`
+ DROP COLUMN `rnd_bonus`,
+ DROP COLUMN `bonus_list_ids`;