diff options
| author | Mitch Riedstra <mitch@riedstra.us> | 2017-10-24 19:09:24 -0400 |
|---|---|---|
| committer | Mitch Riedstra <mitch@riedstra.us> | 2017-10-24 19:09:24 -0400 |
| commit | 61dc16200b5ada1c16def723498e61d1bb112da3 (patch) | |
| tree | 160470f903525e5509e6962149017e6307e38789 /app/dispatch/migrations/0002_auto_20171024_2255.py | |
| parent | 618676efca076cd8a72f12e5c4db2413c4605eff (diff) | |
| download | dispatch-tracker-61dc16200b5ada1c16def723498e61d1bb112da3.tar.gz dispatch-tracker-61dc16200b5ada1c16def723498e61d1bb112da3.tar.xz | |
Remove all old migrations and start fresh. Re-arranged models to better fit Invoice model
Diffstat (limited to 'app/dispatch/migrations/0002_auto_20171024_2255.py')
| -rw-r--r-- | app/dispatch/migrations/0002_auto_20171024_2255.py | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/app/dispatch/migrations/0002_auto_20171024_2255.py b/app/dispatch/migrations/0002_auto_20171024_2255.py new file mode 100644 index 0000000..bbf96d4 --- /dev/null +++ b/app/dispatch/migrations/0002_auto_20171024_2255.py @@ -0,0 +1,27 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.5 on 2017-10-24 22:55 +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', '0001_initial'), + ] + + operations = [ + migrations.AlterField( + model_name='identity', + name='user', + field=models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL), + ), + migrations.AlterField( + model_name='userinvoicenumber', + name='user', + field=models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL), + ), + ] |
