mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 06:42:16 +00:00
11 lines
388 B
Python
11 lines
388 B
Python
from django_evolution.mutations import *
|
|
from django.db import models
|
|
|
|
MUTATIONS = [
|
|
AddField('Mumble', 'display', models.CharField, initial='', max_length=200),
|
|
AddField('Mumble', 'server', models.ForeignKey, initial='<<USER VALUE REQUIRED>>', related_model='mumble.MumbleServer'),
|
|
DeleteField('Mumble', 'dbus'),
|
|
ChangeField('Mumble', 'port', initial=None, null=True)
|
|
]
|
|
|