diff options
| author | Mitch Riedstra <Mitch@riedstra.us> | 2017-10-09 22:32:36 -0400 |
|---|---|---|
| committer | Mitch Riedstra <Mitch@riedstra.us> | 2017-10-09 22:32:36 -0400 |
| commit | af6167f9d47182cc332ba4f4bdc65cc7ed890726 (patch) | |
| tree | 0291084425fdc12daa8302998365f2ee6d5e5d27 /app/dispatch/migrations/0002_auto_20171010_0140.py | |
| parent | 5f137f66f19e60fb6f4b44a2d85076223e5837c5 (diff) | |
| download | dispatch-tracker-af6167f9d47182cc332ba4f4bdc65cc7ed890726.tar.gz dispatch-tracker-af6167f9d47182cc332ba4f4bdc65cc7ed890726.tar.xz | |
Start the ugly process of cleaning up the views. Added a datepicker to the load date form. Added the 'load_number' field to the LoadCreate view
Diffstat (limited to 'app/dispatch/migrations/0002_auto_20171010_0140.py')
| -rw-r--r-- | app/dispatch/migrations/0002_auto_20171010_0140.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/app/dispatch/migrations/0002_auto_20171010_0140.py b/app/dispatch/migrations/0002_auto_20171010_0140.py new file mode 100644 index 0000000..499153b --- /dev/null +++ b/app/dispatch/migrations/0002_auto_20171010_0140.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.5 on 2017-10-10 01:40 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('dispatch', '0001_initial'), + ] + + operations = [ + migrations.AlterField( + model_name='load', + name='amount', + field=models.DecimalField(decimal_places=2, default='0', max_digits=10), + ), + ] |
