diff options
| author | Mitch Riedstra <mitch@riedstra.us> | 2017-10-19 20:40:39 -0400 |
|---|---|---|
| committer | Mitch Riedstra <mitch@riedstra.us> | 2017-10-19 20:40:39 -0400 |
| commit | b8972c970ef70aae82b8a659af23bcb24bf998d1 (patch) | |
| tree | 88f5dfa5b9978b50e05980151e58ab52f8a9e5aa /app/dispatch/migrations | |
| parent | dd748147a7d3f8379d1ea14036b694490dd0b219 (diff) | |
| download | dispatch-tracker-b8972c970ef70aae82b8a659af23bcb24bf998d1.tar.gz dispatch-tracker-b8972c970ef70aae82b8a659af23bcb24bf998d1.tar.xz | |
Migrations to remove load number
Diffstat (limited to 'app/dispatch/migrations')
| -rw-r--r-- | app/dispatch/migrations/0003_remove_load_load_number.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/app/dispatch/migrations/0003_remove_load_load_number.py b/app/dispatch/migrations/0003_remove_load_load_number.py new file mode 100644 index 0000000..cd352ee --- /dev/null +++ b/app/dispatch/migrations/0003_remove_load_load_number.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.5 on 2017-10-20 00:39 +from __future__ import unicode_literals + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('dispatch', '0002_auto_20171018_1602'), + ] + + operations = [ + migrations.RemoveField( + model_name='load', + name='load_number', + ), + ] |
