diff options
| author | Mitch Riedstra <Mitch@riedstra.us> | 2017-06-28 12:37:02 -0400 |
|---|---|---|
| committer | Mitch Riedstra <Mitch@riedstra.us> | 2017-06-28 12:37:02 -0400 |
| commit | 8312e3b36a3bf2276e98b883bc1dbeb235ca9ffe (patch) | |
| tree | 1e6542ac6a1f696ec3c8c798ee3c1701758f560b /app/dispatch/migrations/0004_auto_20170628_1611.py | |
| parent | b2d68c78817f76e0bd01d7f79c3e216c3c8f9e8d (diff) | |
| download | dispatch-tracker-8312e3b36a3bf2276e98b883bc1dbeb235ca9ffe.tar.gz dispatch-tracker-8312e3b36a3bf2276e98b883bc1dbeb235ca9ffe.tar.xz | |
Initial Setup
Diffstat (limited to 'app/dispatch/migrations/0004_auto_20170628_1611.py')
| -rw-r--r-- | app/dispatch/migrations/0004_auto_20170628_1611.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/app/dispatch/migrations/0004_auto_20170628_1611.py b/app/dispatch/migrations/0004_auto_20170628_1611.py new file mode 100644 index 0000000..ca6de59 --- /dev/null +++ b/app/dispatch/migrations/0004_auto_20170628_1611.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.1 on 2017-06-28 16:11 +from __future__ import unicode_literals + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('dispatch', '0003_auto_20170628_1610'), + ] + + operations = [ + migrations.RenameField( + model_name='contact', + old_name='the_company', + new_name='works_for', + ), + ] |
