diff options
| author | leak <leakzx@googlemail.com> | 2011-04-12 09:34:35 +0200 |
|---|---|---|
| committer | leak <leakzx@googlemail.com> | 2011-04-12 09:34:35 +0200 |
| commit | d4f4f4bfeab89fdecf86a3a3537bbc19abf31ab9 (patch) | |
| tree | 97911ea80bd3583ad132284550fcf9ef915ff01f | |
| parent | a8050a891d283ade59f6e56f47fccfc92a887797 (diff) | |
SQL: Updated char db base
| -rw-r--r-- | sql/base/characters_database.sql | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/base/characters_database.sql b/sql/base/characters_database.sql index 2b94f5e70ef..1573f65efdd 100644 --- a/sql/base/characters_database.sql +++ b/sql/base/characters_database.sql @@ -161,14 +161,14 @@ DROP TABLE IF EXISTS `arena_team_member`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `arena_team_member` ( - `arenateamid` int(10) unsigned NOT NULL DEFAULT '0', + `arenaTeamId` int(10) unsigned NOT NULL DEFAULT '0', `guid` int(10) unsigned NOT NULL DEFAULT '0', `weekGames` smallint(5) unsigned NOT NULL DEFAULT '0', `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`) + PRIMARY KEY (`arenaTeamId`,`guid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; |
