diff options
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`); |
