diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2020-03-04 19:51:14 +0000 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2020-03-04 19:51:14 +0000 |
commit | 11834a2580344b90126f3c25b89f18104b3d3ed9 (patch) | |
tree | b4906bfe03de66758e7d878b0210cfed58a8fa6f /ctrack/caf/migrations/0018_remove_caf_owner.py | |
parent | 4c3a0d5808054456f5a90c13d8af62f334e7e031 (diff) |
removed owner field from CAF - daring!
Diffstat (limited to 'ctrack/caf/migrations/0018_remove_caf_owner.py')
-rw-r--r-- | ctrack/caf/migrations/0018_remove_caf_owner.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/ctrack/caf/migrations/0018_remove_caf_owner.py b/ctrack/caf/migrations/0018_remove_caf_owner.py new file mode 100644 index 0000000..02d28c7 --- /dev/null +++ b/ctrack/caf/migrations/0018_remove_caf_owner.py @@ -0,0 +1,17 @@ +# Generated by Django 2.2.9 on 2020-03-04 19:47 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('caf', '0017_auto_20200304_1925'), + ] + + operations = [ + migrations.RemoveField( + model_name='caf', + name='owner', + ), + ] |