Core/DB: increase size of phaseMask field in corpse table to allow values larger than 255

This commit is contained in:
Azazel
2011-03-17 12:33:20 +06:00
parent ca76e17bd6
commit a959618f31
2 changed files with 2 additions and 1 deletions

View File

@@ -1224,7 +1224,7 @@ CREATE TABLE `corpse` (
`position_z` float NOT NULL DEFAULT '0',
`orientation` float NOT NULL DEFAULT '0',
`map` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Map Identifier',
`phaseMask` tinyint(3) unsigned NOT NULL DEFAULT '1',
`phaseMask` smallint(5) unsigned NOT NULL DEFAULT '1',
`displayId` int(10) unsigned NOT NULL DEFAULT '0',
`itemCache` text NOT NULL,
`bytes1` int(10) unsigned NOT NULL DEFAULT '0',