DB/Hotfixes: Updated hotfixes creature table structure for 7.0.3

This commit is contained in:
Vincent-Michael
2016-09-07 12:20:06 +02:00
parent 9b8dbf9281
commit 8d2afd1798

View File

@@ -0,0 +1,5 @@
ALTER TABLE `creature`
CHANGE `Type` `Type` MEDIUMINT(3) UNSIGNED DEFAULT 0 NOT NULL AFTER `FemaleSubName`,
ADD COLUMN `Family` TINYINT(3) UNSIGNED DEFAULT 0 NOT NULL AFTER `Type`,
CHANGE `Rank` `Classification` TINYINT(3) UNSIGNED DEFAULT 0 NOT NULL,
CHANGE `InhabitType` `InhabitType` TINYINT(3) UNSIGNED DEFAULT 0 NOT NULL;