Browse Source

migration manquante

Élie Bouttier 7 years ago
parent
commit
82b49b9461
1 changed files with 21 additions and 0 deletions
  1. 21 0
      services/migrations/0037_auto_20170707_1311.py

+ 21 - 0
services/migrations/0037_auto_20170707_1311.py

@@ -0,0 +1,21 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.11.2 on 2017-07-07 11:11
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+import django.db.models.deletion
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('services', '0036_service_contribution'),
+    ]
+
+    operations = [
+        migrations.AlterField(
+            model_name='serviceallocation',
+            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'),
+        ),
+    ]