# -*- coding: utf-8 -*-
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),
        ),
    ]