From b14152d8d5532621511e5b5f1f46543432768919 Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Sat, 16 Jan 2016 19:56:14 -0600 Subject: [PATCH] dispatch: new auto-migration, either django or py3 --- .../migrations/0005_auto_20160116_1955.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 dr_botzo/dispatch/migrations/0005_auto_20160116_1955.py diff --git a/dr_botzo/dispatch/migrations/0005_auto_20160116_1955.py b/dr_botzo/dispatch/migrations/0005_auto_20160116_1955.py new file mode 100644 index 0000000..784d79a --- /dev/null +++ b/dr_botzo/dispatch/migrations/0005_auto_20160116_1955.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('dispatch', '0004_dispatcheraction_include_key'), + ] + + operations = [ + migrations.AlterField( + model_name='dispatcheraction', + name='type', + field=models.CharField(choices=[('privmsg', 'IRC privmsg'), ('file', 'Write to file')], max_length=16), + ), + ]