123456789101112131415161718192021 |
- # -*- coding: utf-8 -*-
- # Generated by Django 1.10.7 on 2017-05-09 14:02
- from __future__ import unicode_literals
- from django.db import migrations, models
- import django.db.models.deletion
- class Migration(migrations.Migration):
- dependencies = [
- ('services', '0017_auto_20170509_1555'),
- ]
- operations = [
- migrations.AlterField(
- model_name='resourceallocation',
- name='route',
- field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='allocations', related_query_name='allocation', to='services.Route', verbose_name='Route'),
- ),
- ]
|