mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-16 10:30:27 +00:00
First Commit
For Azeroth!
This commit is contained in:
17
sql/structure/CHARACTERS_LOG_ARENA_FIGHTS.sql
Normal file
17
sql/structure/CHARACTERS_LOG_ARENA_FIGHTS.sql
Normal file
@@ -0,0 +1,17 @@
|
||||
CREATE TABLE `log_arena_fights` (
|
||||
`fight_id` int(10) unsigned NOT NULL,
|
||||
`time` datetime NOT NULL,
|
||||
`type` tinyint(3) unsigned NOT NULL,
|
||||
`duration` int(10) unsigned NOT NULL,
|
||||
`winner` int(10) unsigned NOT NULL,
|
||||
`loser` int(10) unsigned NOT NULL,
|
||||
`winner_tr` smallint(5) unsigned NOT NULL,
|
||||
`winner_mmr` smallint(5) unsigned NOT NULL,
|
||||
`winner_tr_change` smallint(6) NOT NULL,
|
||||
`loser_tr` smallint(5) unsigned NOT NULL,
|
||||
`loser_mmr` smallint(5) unsigned NOT NULL,
|
||||
`loser_tr_change` smallint(6) NOT NULL,
|
||||
`currOnline` int(10) unsigned NOT NULL,
|
||||
PRIMARY KEY (`fight_id`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
|
||||
Reference in New Issue
Block a user