diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2020-02-27 08:27:42 +0000 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2020-02-27 08:27:42 +0000 |
commit | 84f6f9e552a14345ce5ea2611ee39636be9ff60d (patch) | |
tree | 96dcc6e06ed36b16862ecd06d772732339173eee /ctrack/caf/migrations/0013_auto_20200227_0827.py | |
parent | 77572ddf5122947d98a26082d774d6d2c0a74d16 (diff) |
renamed CAFFileStore to FileStore
Diffstat (limited to '')
-rw-r--r-- | ctrack/caf/migrations/0013_auto_20200227_0827.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/ctrack/caf/migrations/0013_auto_20200227_0827.py b/ctrack/caf/migrations/0013_auto_20200227_0827.py new file mode 100644 index 0000000..6aab6b4 --- /dev/null +++ b/ctrack/caf/migrations/0013_auto_20200227_0827.py @@ -0,0 +1,18 @@ +# Generated by Django 2.2.9 on 2020-02-27 08:27 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('organisations', '0004_auto_20200220_1634'), + ('caf', '0012_auto_20200226_2202'), + ] + + operations = [ + migrations.RenameModel( + old_name='CAFFileStore', + new_name='FileStore', + ), + ] |