SQL: Changed creature_template.family to be unsigned

This commit is contained in:
Shauren
2014-10-26 10:40:29 +01:00
parent a231777c50
commit 0444c144bf
2 changed files with 2 additions and 1 deletions

View File

@@ -533,7 +533,7 @@ CREATE TABLE `creature_template` (
`unit_flags` int(10) unsigned NOT NULL DEFAULT '0',
`unit_flags2` int(10) unsigned NOT NULL DEFAULT '0',
`dynamicflags` int(10) unsigned NOT NULL DEFAULT '0',
`family` tinyint(4) NOT NULL DEFAULT '0',
`family` tinyint(3) unsigned NOT NULL DEFAULT '0',
`trainer_type` tinyint(4) NOT NULL DEFAULT '0',
`trainer_class` tinyint(3) unsigned NOT NULL DEFAULT '0',
`trainer_race` tinyint(3) unsigned NOT NULL DEFAULT '0',