mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-02-09 03:18:57 +01:00
DB/Hotfixes: Updated hotfixes creature_difficulty table structure for 7.0.3
This commit is contained in:
12
sql/updates/hotfixes/6.x/2016_09_08_00_hotfixes.sql
Normal file
12
sql/updates/hotfixes/6.x/2016_09_08_00_hotfixes.sql
Normal file
@@ -0,0 +1,12 @@
|
||||
ALTER TABLE `hotfixes`.`creature_difficulty`
|
||||
CHANGE `Flags1` `Flags1` INT(10) UNSIGNED DEFAULT 0 NOT NULL AFTER `CreatureID`,
|
||||
CHANGE `Flags2` `Flags2` INT(10) UNSIGNED DEFAULT 0 NOT NULL AFTER `Flags1`,
|
||||
CHANGE `Flags3` `Flags3` INT(10) UNSIGNED DEFAULT 0 NOT NULL AFTER `Flags2`,
|
||||
CHANGE `Flags4` `Flags4` INT(10) UNSIGNED DEFAULT 0 NOT NULL AFTER `Flags3`,
|
||||
CHANGE `Flags5` `Flags5` INT(10) UNSIGNED DEFAULT 0 NOT NULL AFTER `Flags4`,
|
||||
ADD COLUMN `Flags6` INT(10) UNSIGNED DEFAULT 0 NOT NULL AFTER `Flags5`,
|
||||
ADD COLUMN `Flags7` INT(10) UNSIGNED DEFAULT 0 NOT NULL AFTER `Flags6`,
|
||||
CHANGE `FactionID` `FactionTemplateID` SMALLINT(5) UNSIGNED DEFAULT 0 NOT NULL,
|
||||
CHANGE `Expansion` `Expansion` TINYINT(4) DEFAULT 0 NOT NULL,
|
||||
CHANGE `MinLevel` `MinLevel` TINYINT(4) DEFAULT 0 NOT NULL,
|
||||
CHANGE `MaxLevel` `MaxLevel` TINYINT(4) DEFAULT 0 NOT NULL;
|
||||
Reference in New Issue
Block a user