diff options
| author | Mitch Riedstra <Mitch@riedstra.us> | 2017-08-01 10:55:23 -0400 |
|---|---|---|
| committer | Mitch Riedstra <Mitch@riedstra.us> | 2017-08-01 10:55:23 -0400 |
| commit | 8df0bda39f6c7e56e6f8f4e59b42c8b82aeb750b (patch) | |
| tree | b63a1c5b2d5bb5ca6a1902de45889e8d7e403736 /app/dispatch/migrations/0006_auto_20170715_2104.py | |
| parent | 3c04b55a9734f45b93eafbae19f29544adb20f9b (diff) | |
| download | dispatch-tracker-8df0bda39f6c7e56e6f8f4e59b42c8b82aeb750b.tar.gz dispatch-tracker-8df0bda39f6c7e56e6f8f4e59b42c8b82aeb750b.tar.xz | |
Schema and template updates
Diffstat (limited to 'app/dispatch/migrations/0006_auto_20170715_2104.py')
| -rw-r--r-- | app/dispatch/migrations/0006_auto_20170715_2104.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/app/dispatch/migrations/0006_auto_20170715_2104.py b/app/dispatch/migrations/0006_auto_20170715_2104.py new file mode 100644 index 0000000..391240f --- /dev/null +++ b/app/dispatch/migrations/0006_auto_20170715_2104.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.1 on 2017-07-15 21:04 +from __future__ import unicode_literals + +from django.conf import settings +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('dispatch', '0005_auto_20170628_1614'), + ] + + operations = [ + migrations.AlterField( + model_name='load', + name='user', + field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL), + ), + ] |
