Store the current training skill of the character

This commit is contained in:
2011-03-15 16:58:04 +00:00
parent 930fa8a679
commit 009102eaa3
3 changed files with 15 additions and 0 deletions

View File

@@ -53,6 +53,7 @@ class EVEPlayerCharacterSkill(models.Model):
skill = models.ForeignKey('eve_api.EVESkill')
level = models.IntegerField(default=0)
skillpoints = models.IntegerField(default=0)
in_training = models.IntegerField(default=0)
def __unicode__(self):
return u"%s - Level %s" % (self.skill, self.level)