dispatch: new auto-migration, either django or py3

This commit is contained in:
Brian S. Stephan 2016-01-16 19:56:14 -06:00
parent f66aea6c2d
commit b14152d8d5
1 changed files with 19 additions and 0 deletions

View File

@ -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),
),
]