mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 23:02:19 +00:00
8 lines
177 B
Python
8 lines
177 B
Python
from django_evolution.mutations import *
|
|
from django.db import models
|
|
|
|
MUTATIONS = [
|
|
AddField('EVEPlayerCorporation', 'applications', models.BooleanField, initial=False)
|
|
]
|
|
|