0037_auto_20170707_1311.py 632 B

123456789101112131415161718192021
  1. # -*- coding: utf-8 -*-
  2. # Generated by Django 1.11.2 on 2017-07-07 11:11
  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', '0036_service_contribution'),
  9. ]
  10. operations = [
  11. migrations.AlterField(
  12. model_name='serviceallocation',
  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. ]