From 0be25b7fed14e59ebb7ac52930a8284535eb4276 Mon Sep 17 00:00:00 2001 From: Kyle Blanker Date: Wed, 13 Sep 2017 14:04:47 -0400 Subject: Setup driver, company details to show loads, loads list now shows per week as well --- app/dispatch/migrations/0008_load_load_number.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 app/dispatch/migrations/0008_load_load_number.py (limited to 'app/dispatch/migrations') diff --git a/app/dispatch/migrations/0008_load_load_number.py b/app/dispatch/migrations/0008_load_load_number.py new file mode 100644 index 0000000..b671b87 --- /dev/null +++ b/app/dispatch/migrations/0008_load_load_number.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.5 on 2017-09-13 17:05 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('dispatch', '0007_auto_20170715_2105'), + ] + + operations = [ + migrations.AddField( + model_name='load', + name='load_number', + field=models.CharField(default="", max_length=64), + preserve_default=False, + ), + ] -- cgit v1.2.3