From 32f78473a493dacf1170887ed2fcb2895caa151f Mon Sep 17 00:00:00 2001 From: Vincent-Michael Date: Thu, 8 Sep 2016 11:52:35 +0200 Subject: DB/Hotfixes: Updated hotfixes creature_difficulty table structure for 7.0.3 --- sql/updates/hotfixes/6.x/2016_09_08_00_hotfixes.sql | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 sql/updates/hotfixes/6.x/2016_09_08_00_hotfixes.sql (limited to 'sql') diff --git a/sql/updates/hotfixes/6.x/2016_09_08_00_hotfixes.sql b/sql/updates/hotfixes/6.x/2016_09_08_00_hotfixes.sql new file mode 100644 index 00000000000..e9ff18e295e --- /dev/null +++ b/sql/updates/hotfixes/6.x/2016_09_08_00_hotfixes.sql @@ -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; -- cgit v1.2.3