diff options
| author | Mitch Riedstra <Mitch@riedstra.us> | 2017-11-10 11:05:05 -0500 |
|---|---|---|
| committer | Mitch Riedstra <Mitch@riedstra.us> | 2017-11-10 11:05:05 -0500 |
| commit | c80bafec506beef3184381ae7f9b55edd438e45a (patch) | |
| tree | f4b635116fda59198d5c7eca664f917b6cc3a5e3 /app/dispatch/migrations/0004_auto_20171110_1400.py | |
| parent | 33a6e5cb02189b7621a279c32c12b5c3d83ba680 (diff) | |
| download | dispatch-tracker-c80bafec506beef3184381ae7f9b55edd438e45a.tar.gz dispatch-tracker-c80bafec506beef3184381ae7f9b55edd438e45a.tar.xz | |
Fix typo in 'payment_identifier' Add pagination to Drivers, Customers and Invoices. Filter invoices by paid/unpaid.
Diffstat (limited to 'app/dispatch/migrations/0004_auto_20171110_1400.py')
| -rw-r--r-- | app/dispatch/migrations/0004_auto_20171110_1400.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/app/dispatch/migrations/0004_auto_20171110_1400.py b/app/dispatch/migrations/0004_auto_20171110_1400.py new file mode 100644 index 0000000..5feb900 --- /dev/null +++ b/app/dispatch/migrations/0004_auto_20171110_1400.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.5 on 2017-11-10 14:00 +from __future__ import unicode_literals + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('dispatch', '0003_invoice_payment_identifer'), + ] + + operations = [ + migrations.RenameField( + model_name='invoice', + old_name='payment_identifer', + new_name='payment_identifier', + ), + ] |
