mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
SQL/Arena: Fix some warnings with missing default values
This commit is contained in:
@@ -129,12 +129,12 @@ CREATE TABLE `arena_team` (
|
||||
`name` varchar(24) NOT NULL,
|
||||
`captainGuid` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`type` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`rating` smallint(5) unsigned NOT NULL,
|
||||
`rating` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`seasonGames` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`seasonWins` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`weekGames` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`weekWins` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`rank` int(10) unsigned NOT NULL,
|
||||
`rank` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`backgroundColor` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`emblemStyle` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`emblemColor` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
|
||||
Reference in New Issue
Block a user