diff options
| author | Shauren <shauren.trinity@gmail.com> | 2021-12-31 16:14:19 +0100 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2021-12-31 16:14:19 +0100 |
| commit | 112b8799ffdc5288f1b24a4eee0457751bcef047 (patch) | |
| tree | a865d27e0c7181e57eb81ae76e5a51f3b8d02fc7 /sql/updates/characters/master | |
| parent | 8eb1938fe83ec2879b46838c592c8aced4a2ef37 (diff) | |
DB: Purge mediumint columns from character db (change to full int)
Diffstat (limited to 'sql/updates/characters/master')
| -rw-r--r-- | sql/updates/characters/master/2021_12_31_02_characters.sql | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sql/updates/characters/master/2021_12_31_02_characters.sql b/sql/updates/characters/master/2021_12_31_02_characters.sql new file mode 100644 index 00000000000..2f8a30e8dd7 --- /dev/null +++ b/sql/updates/characters/master/2021_12_31_02_characters.sql @@ -0,0 +1,11 @@ +ALTER TABLE `character_battleground_data` MODIFY `mountSpell` int(10) unsigned NOT NULL DEFAULT '0'; +ALTER TABLE `character_pet` MODIFY `CreatedBySpell` int(10) unsigned NOT NULL DEFAULT '0'; +ALTER TABLE `character_spell` MODIFY `spell` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Spell Identifier'; +ALTER TABLE `character_talent` MODIFY `talentId` int(10) unsigned NOT NULL; +ALTER TABLE `character_void_storage` MODIFY `itemEntry` int(10) unsigned NOT NULL; +ALTER TABLE `characters` MODIFY `latency` int(10) unsigned NOT NULL DEFAULT '0'; +ALTER TABLE `guild_rank` MODIFY `rights` int(10) unsigned NOT NULL DEFAULT '0'; +ALTER TABLE `item_instance` MODIFY `itemEntry` int(10) unsigned NOT NULL DEFAULT '0'; +ALTER TABLE `item_instance` MODIFY `flags` int(10) unsigned NOT NULL DEFAULT '0'; +ALTER TABLE `pet_spell` MODIFY `spell` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Spell Identifier'; +ALTER TABLE `quest_tracker` MODIFY `id` int(10) unsigned NOT NULL DEFAULT '0'; |
