diff options
| author | Mitch Riedstra <Mitch@riedstra.us> | 2017-11-22 17:39:44 -0500 |
|---|---|---|
| committer | Mitch Riedstra <Mitch@riedstra.us> | 2017-11-22 17:39:44 -0500 |
| commit | f125be2549e5f4f04c8097b7305be2982ccff063 (patch) | |
| tree | 0f408132547f9151707555e4718e7981b5b8f2e8 /app/dispatch/migrations/0006_paperwork_filename.py | |
| parent | 63e7134298288514473e86614b51daa40b37cdd7 (diff) | |
| download | dispatch-tracker-f125be2549e5f4f04c8097b7305be2982ccff063.tar.gz dispatch-tracker-f125be2549e5f4f04c8097b7305be2982ccff063.tar.xz | |
Change Drivers to vendors in some locations. Remove description field for uploads, changed to filename. Still need to update template.
Diffstat (limited to 'app/dispatch/migrations/0006_paperwork_filename.py')
| -rw-r--r-- | app/dispatch/migrations/0006_paperwork_filename.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/app/dispatch/migrations/0006_paperwork_filename.py b/app/dispatch/migrations/0006_paperwork_filename.py new file mode 100644 index 0000000..dab77ae --- /dev/null +++ b/app/dispatch/migrations/0006_paperwork_filename.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.5 on 2017-11-22 22:09 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('dispatch', '0005_remove_paperwork_description'), + ] + + operations = [ + migrations.AddField( + model_name='paperwork', + name='filename', + field=models.CharField(default='', max_length=256), + ), + ] |
