Added mumble evolutions

This commit is contained in:
2010-03-23 14:44:32 +00:00
parent 84191f24e8
commit d525654917
2 changed files with 10 additions and 0 deletions

View File

View 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)
]