mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 06:42:16 +00:00
8 lines
189 B
Python
8 lines
189 B
Python
from django_evolution.mutations import *
|
|
from django.db import models
|
|
|
|
MUTATIONS = [
|
|
AddField('EVEPlayerAlliance', 'group', models.ForeignKey, null=True, related_model='auth.Group')
|
|
]
|
|
|