Files
test-auth/eve_api/evolutions/director-update.py
Andrew Williams 8a1210f235 Corporate Management stage 1
This changeset adds a couple of new features to the API, it pulls in all characters on a corp
basis, if a director's API key is available, and updates last login/logoff date/times for each
corp member.
2010-04-21 13:31:22 +01:00

8 lines
175 B
Python

from django_evolution.mutations import *
from django.db import models
MUTATIONS = [
AddField('EVEPlayerCharacter', 'applications', models.BooleanField, initial=False)
]