Remove django-evolution

This commit is contained in:
2010-07-01 18:09:14 +01:00
parent 36708e49f2
commit 74568b477e
12 changed files with 0 additions and 64 deletions

View File

@@ -1 +0,0 @@
SEQUENCE = ['applications-field', 'total-sp', 'login-locations', 'director-update', 'alliance-group']

View File

@@ -1,7 +0,0 @@
from django_evolution.mutations import *
from django.db import models
MUTATIONS = [
AddField('EVEPlayerAlliance', 'group', models.ForeignKey, null=True, related_model='auth.Group')
]

View File

@@ -1,7 +0,0 @@
from django_evolution.mutations import *
from django.db import models
MUTATIONS = [
AddField('EVEPlayerCorporation', 'applications', models.BooleanField, initial=False)
]

View File

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

View File

@@ -1,9 +0,0 @@
from django_evolution.mutations import *
from django.db import models
MUTATIONS = [
AddField('EVEPlayerCharacter', 'current_location_id', models.IntegerField, null=True),
AddField('EVEPlayerCharacter', 'last_login', models.DateTimeField, null=True),
AddField('EVEPlayerCharacter', 'last_logoff', models.DateTimeField, null=True)
]

View File

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