Add missing column personal_rating to full characters.sql

--HG--
branch : trunk
This commit is contained in:
Chaz Brown
2009-04-06 01:16:34 -04:00
parent e4e1c29006
commit 9a8103f248

View File

@@ -54,7 +54,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',
`points_to_add` int(10) unsigned NOT NULL default '0'
`points_to_add` int(10) unsigned NOT NULL default '0',
`personal_rating` int(10) UNSIGNED NOT NULL DEFAULT '0',
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--