mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-15 07:12:16 +00:00
Added mumble evolutions
This commit is contained in:
0
mumble/evolutions/__init__.py
Normal file
0
mumble/evolutions/__init__.py
Normal file
10
mumble/evolutions/mumble-db-update-1.py
Normal file
10
mumble/evolutions/mumble-db-update-1.py
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
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)
|
||||||
|
]
|
||||||
|
|
||||||
Reference in New Issue
Block a user