Core/Guilds: Fix Guild bank event log for big stacks, fixes issue 3996, thanks maketheking for pointing out the problem

--HG--
branch : trunk
This commit is contained in:
Shocker
2010-09-13 22:41:32 +03:00
parent a48923ee8c
commit de9ed810ef
4 changed files with 7 additions and 6 deletions

View File

@@ -1449,7 +1449,7 @@ CREATE TABLE `guild_bank_eventlog` (
`EventType` tinyint(3) unsigned NOT NULL default '0' COMMENT 'Event type',
`PlayerGuid` int(11) unsigned NOT NULL default '0',
`ItemOrMoney` int(11) unsigned NOT NULL default '0',
`ItemStackCount` tinyint(3) unsigned NOT NULL default '0',
`ItemStackCount` smallint(4) unsigned NOT NULL default '0',
`DestTabId` tinyint(1) unsigned NOT NULL default '0' COMMENT 'Destination Tab Id',
`TimeStamp` bigint(20) unsigned NOT NULL default '0' COMMENT 'Event UNIX time',
PRIMARY KEY (`guildid`,`LogGuid`,`TabId`),