Fix roleIDs to use a charfield until we get bigints in django 1.2

This commit is contained in:
2010-09-11 19:38:52 +01:00
parent 94dc88b86d
commit 2b9b9358b1
3 changed files with 136 additions and 1 deletions

View File

@@ -111,6 +111,7 @@ class EVEPlayerCharacterRole(EVEAPIModel):
Represents a role which can be applied to a character
"""
roleid = models.CharField(max_length=64, blank=False, null=False)
name = models.CharField(max_length=255, blank=False, null=False)
class Meta: