mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 23:50:44 +01:00
[7307] Add primary key for table arena_team_member. Author: VladimirMangos
--HG-- branch : trunk
This commit is contained in:
@@ -21,7 +21,7 @@
|
||||
|
||||
DROP TABLE IF EXISTS `character_db_version`;
|
||||
CREATE TABLE `character_db_version` (
|
||||
`required_7267_01_characters_auctionhouse` bit(1) default NULL
|
||||
`required_7307_01_characters_arena_team_member` bit(1) default NULL
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Last applied sql update to DB';
|
||||
|
||||
--
|
||||
@@ -96,7 +96,8 @@ CREATE TABLE `arena_team_member` (
|
||||
`wons_week` int(10) unsigned NOT NULL default '0',
|
||||
`played_season` int(10) unsigned NOT NULL default '0',
|
||||
`wons_season` int(10) unsigned NOT NULL default '0',
|
||||
`personal_rating` int(10) UNSIGNED NOT NULL DEFAULT '0'
|
||||
`personal_rating` int(10) UNSIGNED NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`arenateamid`,`guid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
--
|
||||
|
||||
Reference in New Issue
Block a user