23 lines
613 B
Python
23 lines
613 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('dispatch', '0002_auto_20150619_1124'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name='dispatcher',
|
|
options={'permissions': (('send_message', 'Can send messages to dispatchers'),)},
|
|
),
|
|
migrations.AlterField(
|
|
model_name='dispatcheraction',
|
|
name='dispatcher',
|
|
field=models.ForeignKey(related_name='actions', to='dispatch.Dispatcher', on_delete=models.CASCADE),
|
|
),
|
|
]
|