mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-02-06 08:59:11 +01:00
DB: converted character database mediumint fields to int
This commit is contained in:
34
sql/updates/characters/4.3.4/2021_12_31_01_characters.sql
Normal file
34
sql/updates/characters/4.3.4/2021_12_31_01_characters.sql
Normal file
@@ -0,0 +1,34 @@
|
||||
ALTER TABLE `character_archaeology_projects` MODIFY `project` int(10) unsigned NOT NULL;
|
||||
ALTER TABLE `character_aura` MODIFY `spell` int(10) unsigned NOT NULL DEFAULT '0';
|
||||
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_spell_cooldown` MODIFY `spell` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Spell Identifier';
|
||||
ALTER TABLE `character_talent` MODIFY `spell` 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 `characters` MODIFY `transguid` 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 `pet_aura` MODIFY `spell` 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 `pet_spell_cooldown` MODIFY `spell` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Spell Identifier';
|
||||
ALTER TABLE `pvpstats_players` MODIFY `attr_1` int(10) unsigned NOT NULL DEFAULT '0';
|
||||
ALTER TABLE `pvpstats_players` MODIFY `attr_2` int(10) unsigned NOT NULL DEFAULT '0';
|
||||
ALTER TABLE `pvpstats_players` MODIFY `attr_3` int(10) unsigned NOT NULL DEFAULT '0';
|
||||
ALTER TABLE `pvpstats_players` MODIFY `attr_4` int(10) unsigned NOT NULL DEFAULT '0';
|
||||
ALTER TABLE `pvpstats_players` MODIFY `attr_5` int(10) unsigned NOT NULL DEFAULT '0';
|
||||
ALTER TABLE `pvpstats_players` MODIFY `score_bonus_honor` int(10) unsigned NOT NULL;
|
||||
ALTER TABLE `pvpstats_players` MODIFY `score_damage_done` int(10) unsigned NOT NULL;
|
||||
ALTER TABLE `pvpstats_players` MODIFY `score_deaths` int(10) unsigned NOT NULL;
|
||||
ALTER TABLE `pvpstats_players` MODIFY `score_healing_done` int(10) unsigned NOT NULL;
|
||||
ALTER TABLE `pvpstats_players` MODIFY `score_honorable_kills` int(10) unsigned NOT NULL;
|
||||
ALTER TABLE `pvpstats_players` MODIFY `score_killing_blows` int(10) unsigned NOT NULL;
|
||||
ALTER TABLE `quest_tracker` MODIFY `id` int(10) unsigned NOT NULL DEFAULT '0';
|
||||
|
||||
ALTER TABLE `pet_aura` MODIFY `amount0` int(11) NOT NULL;
|
||||
ALTER TABLE `pet_aura` MODIFY `amount1` int(11) NOT NULL;
|
||||
ALTER TABLE `pet_aura` MODIFY `amount2` int(11) NOT NULL;
|
||||
ALTER TABLE `pet_aura` MODIFY `base_amount0` int(11) NOT NULL;
|
||||
ALTER TABLE `pet_aura` MODIFY `base_amount1` int(11) NOT NULL;
|
||||
ALTER TABLE `pet_aura` MODIFY `base_amount2` int(11) NOT NULL;
|
||||
Reference in New Issue
Block a user