aboutsummaryrefslogtreecommitdiff
path: root/app/dispatch/migrations
diff options
context:
space:
mode:
authorMitch Riedstra <Mitch@riedstra.us>2017-11-22 17:39:44 -0500
committerMitch Riedstra <Mitch@riedstra.us>2017-11-22 17:39:44 -0500
commitf125be2549e5f4f04c8097b7305be2982ccff063 (patch)
tree0f408132547f9151707555e4718e7981b5b8f2e8 /app/dispatch/migrations
parent63e7134298288514473e86614b51daa40b37cdd7 (diff)
downloaddispatch-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')
-rw-r--r--app/dispatch/migrations/0005_remove_paperwork_description.py19
-rw-r--r--app/dispatch/migrations/0006_paperwork_filename.py20
-rw-r--r--app/dispatch/migrations/0007_remove_paperwork_filename.py19
3 files changed, 58 insertions, 0 deletions
diff --git a/app/dispatch/migrations/0005_remove_paperwork_description.py b/app/dispatch/migrations/0005_remove_paperwork_description.py
new file mode 100644
index 0000000..5c65a43
--- /dev/null
+++ b/app/dispatch/migrations/0005_remove_paperwork_description.py
@@ -0,0 +1,19 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.11.5 on 2017-11-22 21:41
+from __future__ import unicode_literals
+
+from django.db import migrations
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('dispatch', '0004_auto_20171110_1400'),
+ ]
+
+ operations = [
+ migrations.RemoveField(
+ model_name='paperwork',
+ name='description',
+ ),
+ ]
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),
+ ),
+ ]
diff --git a/app/dispatch/migrations/0007_remove_paperwork_filename.py b/app/dispatch/migrations/0007_remove_paperwork_filename.py
new file mode 100644
index 0000000..156d2cd
--- /dev/null
+++ b/app/dispatch/migrations/0007_remove_paperwork_filename.py
@@ -0,0 +1,19 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.11.5 on 2017-11-22 22:15
+from __future__ import unicode_literals
+
+from django.db import migrations
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('dispatch', '0006_paperwork_filename'),
+ ]
+
+ operations = [
+ migrations.RemoveField(
+ model_name='paperwork',
+ name='filename',
+ ),
+ ]