aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorOvahlord <dreadkiller@gmx.de>2023-11-21 23:59:42 +0100
committerOvahlord <dreadkiller@gmx.de>2023-11-21 23:59:42 +0100
commitf08213a005ca651948be417b48cb731e84f01505 (patch)
tree7cfa4028ca310dbede2b087e310afa751f5b3f76 /sql
parent8605fd8851d22fad908a6998d61ef808458fabd6 (diff)
Core/Players: downgraded the glyph system
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/characters/3.4.x/2023_11_21_00_characters.sql5
1 files changed, 5 insertions, 0 deletions
diff --git a/sql/updates/characters/3.4.x/2023_11_21_00_characters.sql b/sql/updates/characters/3.4.x/2023_11_21_00_characters.sql
new file mode 100644
index 00000000000..d0c3dae0e4d
--- /dev/null
+++ b/sql/updates/characters/3.4.x/2023_11_21_00_characters.sql
@@ -0,0 +1,5 @@
+ALTER TABLE `character_glyphs`
+ ADD COLUMN `glyphSlot` TINYINT UNSIGNED DEFAULT 0 NOT NULL AFTER `talentGroup`,
+ CHANGE `glyphId` `glyphId` SMALLINT UNSIGNED DEFAULT 0 NOT NULL AFTER `glyphSlot`,
+ DROP PRIMARY KEY,
+ ADD PRIMARY KEY (`guid`, `talentGroup`, `glyphSlot`, `glyphId`);