aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorOvahlord <dreadkiller@gmx.de>2023-11-19 17:53:01 +0100
committerOvahlord <dreadkiller@gmx.de>2023-11-19 18:08:43 +0100
commit8aa917a3e45b006c16cbe58cf6323d400417a687 (patch)
treeea8498de90ced676f8f2e7483a31c3e274c10614 /sql
parent659bd86f7ba5ec1ecda9bfecaad5db8a5fac1c5c (diff)
Core/Players: restore secondary talent specialization support and implement SPELL_EFFECT_TALENT_SPEC_COUNT
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/characters/3.4.x/2023_11_19_00_characters.sql4
1 files changed, 4 insertions, 0 deletions
diff --git a/sql/updates/characters/3.4.x/2023_11_19_00_characters.sql b/sql/updates/characters/3.4.x/2023_11_19_00_characters.sql
new file mode 100644
index 00000000000..c20683eff7f
--- /dev/null
+++ b/sql/updates/characters/3.4.x/2023_11_19_00_characters.sql
@@ -0,0 +1,4 @@
+ALTER TABLE `characters_10x`.`characters`
+ DROP COLUMN `activeTalentGroup`,
+ CHANGE `primarySpecialization` `activeTalentGroup` TINYINT UNSIGNED DEFAULT 0 NOT NULL,
+ ADD COLUMN `bonusTalentGroups` TINYINT UNSIGNED DEFAULT 0 NOT NULL AFTER `activeTalentGroup`;