Added Total SP field calculated during API runs

This commit is contained in:
2010-04-20 14:04:54 +01:00
parent e2dce0aed4
commit 98e10b1952
6 changed files with 31 additions and 8 deletions

View File

@@ -0,0 +1,7 @@
from django_evolution.mutations import *
from django.db import models
MUTATIONS = [
AddField('EVEPlayerCharacter', 'total_sp', models.IntegerField, initial=0)
]