Files
test-auth/eve_api/evolutions/total-sp.py

8 lines
167 B
Python

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