mirror of
https://github.com/mangosfour/server.git
synced 2025-12-27 19:37:04 +00:00
Imported MaNGOS revision 6767 from http://mangos.svn.sourceforge.net/svnroot/mangos/trunk/
This commit is contained in:
parent
d767495d5b
commit
800ee76535
3322 changed files with 903437 additions and 0 deletions
10
sql/updates/5955_characters_guild_eventlog.sql
Normal file
10
sql/updates/5955_characters_guild_eventlog.sql
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
DROP TABLE IF EXISTS `guild_eventlog`;
|
||||
CREATE TABLE `guild_eventlog` (
|
||||
`guildid` int(11) NOT NULL COMMENT 'Guild Identificator',
|
||||
`LogGuid` int(11) NOT NULL COMMENT 'Log entry identificator',
|
||||
`EventType` tinyint(1) NOT NULL COMMENT 'Event type',
|
||||
`PlayerGuid1` int(11) NOT NULL COMMENT 'Player 1',
|
||||
`PlayerGuid2` int(11) NOT NULL COMMENT 'Player 2',
|
||||
`NewRank` tinyint(2) NOT NULL COMMENT 'New rank(in case promotion/demotion)',
|
||||
`TimeStamp` bigint(20) NOT NULL COMMENT 'Event UNIX time'
|
||||
) ENGINE = InnoDB DEFAULT CHARSET = latin1 COMMENT 'Guild Eventlog';
|
||||
Loading…
Add table
Add a link
Reference in a new issue