mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
Core/Maps: Updated map difficulties
This commit is contained in:
10
sql/updates/characters/2015_01_10_00_characters.sql
Normal file
10
sql/updates/characters/2015_01_10_00_characters.sql
Normal file
@@ -0,0 +1,10 @@
|
||||
ALTER TABLE `characters`
|
||||
DROP `instance_mode_mask`,
|
||||
ADD `dungeonDifficulty` tinyint(3) unsigned NOT NULL DEFAULT '1' AFTER `instance_id`,
|
||||
ADD `raidDifficulty` tinyint(3) unsigned NOT NULL DEFAULT '14' AFTER `dungeonDifficulty`,
|
||||
ADD `legacyRaidDifficulty` tinyint(3) unsigned NOT NULL DEFAULT '3' AFTER `raidDifficulty`;
|
||||
|
||||
ALTER TABLE `groups`
|
||||
CHANGE `difficulty` `difficulty` tinyint(3) unsigned NOT NULL DEFAULT '1' AFTER `groupType`,
|
||||
CHANGE `raiddifficulty` `raidDifficulty` tinyint(3) unsigned NOT NULL DEFAULT '14' AFTER `difficulty`,
|
||||
ADD `legacyRaidDifficulty` tinyint(3) unsigned NOT NULL DEFAULT '3' AFTER `raidDifficulty`;
|
||||
Reference in New Issue
Block a user