aboutsummaryrefslogtreecommitdiff
path: root/sql/base
diff options
context:
space:
mode:
authorShocker <shocker@freakz.ro>2011-04-08 23:20:10 +0300
committerShocker <shocker@freakz.ro>2011-04-08 23:20:10 +0300
commit2c62548105ba1be360bbf8e409db2c938e7e41c5 (patch)
treecc200e365dc701f827213908fd6913c8a7f4b4ec /sql/base
parenta2bcb9425cbcc52e411ef418072c50fae4586eda (diff)
parent7935c2f5c299f187c2d18d10e06864ea113c97c1 (diff)
Merge branch 'master' of github.com:TrinityCore/TrinityCore
Diffstat (limited to 'sql/base')
-rw-r--r--sql/base/characters_database.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/base/characters_database.sql b/sql/base/characters_database.sql
index fabd0308899..bca9371d571 100644
--- a/sql/base/characters_database.sql
+++ b/sql/base/characters_database.sql
@@ -167,6 +167,7 @@ CREATE TABLE `arena_team_member` (
`weekWins` smallint(5) unsigned NOT NULL DEFAULT '0',
`seasonGames` smallint(5) unsigned NOT NULL DEFAULT '0',
`seasonWins` smallint(5) unsigned NOT NULL DEFAULT '0',
+ `personalRating` smallint(5) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`arenateamid`,`guid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
@@ -374,7 +375,6 @@ DROP TABLE IF EXISTS `character_arena_stats`;
CREATE TABLE `character_arena_stats` (
`guid` int(10) NOT NULL,
`slot` tinyint(3) NOT NULL,
- `personalRating` smallint(5) NOT NULL,
`matchMakerRating` smallint(5) NOT NULL,
PRIMARY KEY (`guid`,`slot`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;