Files
test-auth/eve_api/evolutions/total-sp.py
2010-04-20 14:09:01 +01:00

8 lines
167 B
Python

from django_evolution.mutations import *
from django.db import models
MUTATIONS = [
AddField('EVEPlayerCharacter', 'total_sp', models.IntegerField, null=True)
]