SQL/Arena: Removing ambiguous personalRating column until things are sorted out

This commit is contained in:
leak
2011-04-06 11:20:01 +02:00
parent ae3ab32ea5
commit 9456ae7199
2 changed files with 3 additions and 1 deletions
-1
View File
@@ -167,7 +167,6 @@ 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 */;
@@ -0,0 +1,3 @@
-- Update arena_team_member table
ALTER TABLE `arena_team_member`
DROP COLUMN `personalRating`;