0018_auto_20170509_1602.py 631 B

123456789101112131415161718192021
  1. # -*- coding: utf-8 -*-
  2. # Generated by Django 1.10.7 on 2017-05-09 14:02
  3. from __future__ import unicode_literals
  4. from django.db import migrations, models
  5. import django.db.models.deletion
  6. class Migration(migrations.Migration):
  7. dependencies = [
  8. ('services', '0017_auto_20170509_1555'),
  9. ]
  10. operations = [
  11. migrations.AlterField(
  12. model_name='resourceallocation',
  13. name='route',
  14. field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='allocations', related_query_name='allocation', to='services.Route', verbose_name='Route'),
  15. ),
  16. ]