diff options
| author | Ovahlord <dreadkiller@gmx.de> | 2023-11-21 23:59:42 +0100 |
|---|---|---|
| committer | Ovahlord <dreadkiller@gmx.de> | 2023-11-21 23:59:42 +0100 |
| commit | f08213a005ca651948be417b48cb731e84f01505 (patch) | |
| tree | 7cfa4028ca310dbede2b087e310afa751f5b3f76 /sql | |
| parent | 8605fd8851d22fad908a6998d61ef808458fabd6 (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.sql | 5 |
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`); |
