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/0006_auto_20171023_2049.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/0006_auto_20171023_2049.py')
| -rw-r--r-- | app/dispatch/migrations/0006_auto_20171023_2049.py | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/app/dispatch/migrations/0006_auto_20171023_2049.py b/app/dispatch/migrations/0006_auto_20171023_2049.py deleted file mode 100644 index 04668ff..0000000 --- a/app/dispatch/migrations/0006_auto_20171023_2049.py +++ /dev/null @@ -1,28 +0,0 @@ -# -*- coding: utf-8 -*- -# Generated by Django 1.11.5 on 2017-10-23 20:49 -from __future__ import unicode_literals - -from django.db import migrations, models -import django.utils.timezone - - -class Migration(migrations.Migration): - - dependencies = [ - ('dispatch', '0005_invoice_invoice_id'), - ] - - operations = [ - migrations.AddField( - model_name='invoice', - name='due_date', - field=models.DateField(default=django.utils.timezone.now), - preserve_default=False, - ), - migrations.AddField( - model_name='invoice', - name='invoice_date', - field=models.DateField(default=django.utils.timezone.now), - preserve_default=False, - ), - ] |
