mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 14:52:15 +00:00
Remove django-evolution
This commit is contained in:
@@ -1 +0,0 @@
|
||||
SEQUENCE = ['applications-field', 'total-sp', 'login-locations', 'director-update', 'alliance-group']
|
||||
@@ -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')
|
||||
]
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
from django_evolution.mutations import *
|
||||
from django.db import models
|
||||
|
||||
MUTATIONS = [
|
||||
AddField('EVEPlayerCorporation', 'applications', models.BooleanField, initial=False)
|
||||
]
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
from django_evolution.mutations import *
|
||||
from django.db import models
|
||||
|
||||
MUTATIONS = [
|
||||
AddField('EVEPlayerCharacter', 'director_update', models.BooleanField, initial=False)
|
||||
]
|
||||
|
||||
@@ -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)
|
||||
]
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
from django_evolution.mutations import *
|
||||
from django.db import models
|
||||
|
||||
MUTATIONS = [
|
||||
AddField('EVEPlayerCharacter', 'total_sp', models.IntegerField, null=True)
|
||||
]
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
SEQUENCE = ['validation-field']
|
||||
@@ -1,7 +0,0 @@
|
||||
from django_evolution.mutations import *
|
||||
from django.db import models
|
||||
|
||||
MUTATIONS = [
|
||||
AddField('RedditAccount', 'validated', models.BooleanField, initial=False),
|
||||
]
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
Django==1.1.2
|
||||
django-evolution==0.5
|
||||
django-piston==0.2.2
|
||||
django-registration==0.7
|
||||
yolk==0.4.1
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
SEQUENCE = ['uid_fix', 'settings_json']
|
||||
@@ -1,10 +0,0 @@
|
||||
#----- Evolution for sso
|
||||
from django_evolution.mutations import *
|
||||
from django.db import models
|
||||
from django_jsonfield.fields import JSONField
|
||||
|
||||
MUTATIONS = [
|
||||
AddField('Service', 'settings_json', JSONField, initial='{}'),
|
||||
]
|
||||
#----------------------
|
||||
|
||||
@@ -1,6 +0,0 @@
|
||||
from django_evolution.mutations import *
|
||||
from django.db import models
|
||||
|
||||
MUTATIONS = [
|
||||
AddField('ServiceAccount', 'service_uid', models.CharField, max_length=200, blank=False)
|
||||
]
|
||||
Reference in New Issue
Block a user