diff options
| author | Ovahlord <dreadkiller@gmx.de> | 2023-11-19 17:53:01 +0100 |
|---|---|---|
| committer | Ovahlord <dreadkiller@gmx.de> | 2023-11-19 18:08:43 +0100 |
| commit | 8aa917a3e45b006c16cbe58cf6323d400417a687 (patch) | |
| tree | ea8498de90ced676f8f2e7483a31c3e274c10614 /sql | |
| parent | 659bd86f7ba5ec1ecda9bfecaad5db8a5fac1c5c (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.sql | 4 |
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`; |
