aboutsummaryrefslogtreecommitdiff
path: root/app/dispatch/migrations/0002_auto_20171010_0140.py
diff options
context:
space:
mode:
authorMitch Riedstra <Mitch@riedstra.us>2017-10-09 22:32:36 -0400
committerMitch Riedstra <Mitch@riedstra.us>2017-10-09 22:32:36 -0400
commitaf6167f9d47182cc332ba4f4bdc65cc7ed890726 (patch)
tree0291084425fdc12daa8302998365f2ee6d5e5d27 /app/dispatch/migrations/0002_auto_20171010_0140.py
parent5f137f66f19e60fb6f4b44a2d85076223e5837c5 (diff)
downloaddispatch-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.py20
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),
+ ),
+ ]