diff options
| author | Kyle Blanker <kyle@stridet.com> | 2017-09-13 14:04:47 -0400 |
|---|---|---|
| committer | Kyle Blanker <kyle@stridet.com> | 2017-09-13 14:04:47 -0400 |
| commit | 0be25b7fed14e59ebb7ac52930a8284535eb4276 (patch) | |
| tree | 9f4e0e78df7f15bdc037d582100c7736536c5a41 /app/dispatch/migrations/0008_load_load_number.py | |
| parent | 207be6ecd78719808836b49af4878c60b61e7d0a (diff) | |
| download | dispatch-tracker-0be25b7fed14e59ebb7ac52930a8284535eb4276.tar.gz dispatch-tracker-0be25b7fed14e59ebb7ac52930a8284535eb4276.tar.xz | |
Setup driver, company details to show loads, loads list now shows per week as well
Diffstat (limited to 'app/dispatch/migrations/0008_load_load_number.py')
| -rw-r--r-- | app/dispatch/migrations/0008_load_load_number.py | 21 |
1 files changed, 21 insertions, 0 deletions
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, + ), + ] |
