20 lines
486 B
Python
20 lines
486 B
Python
# -*- 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),
|
|
),
|
|
]
|