diff options
author | luxagraf <sng@luxagraf.net> | 2020-03-08 11:54:02 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2020-03-08 11:54:02 -0400 |
commit | 7ef413bd5e13865e9b8fc5cc1a8af3cfe28b61a0 (patch) | |
tree | e5d48fdab8079a9aec5e63f40a6f39a0b328bf46 /app/locations/migrations/0028_auto_20200308_1152.py | |
parent | b8551e606d7c1c8b405fc1e8b115db8b81db75eb (diff) |
added location migrations
Diffstat (limited to 'app/locations/migrations/0028_auto_20200308_1152.py')
-rw-r--r-- | app/locations/migrations/0028_auto_20200308_1152.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/app/locations/migrations/0028_auto_20200308_1152.py b/app/locations/migrations/0028_auto_20200308_1152.py new file mode 100644 index 0000000..6adbd16 --- /dev/null +++ b/app/locations/migrations/0028_auto_20200308_1152.py @@ -0,0 +1,17 @@ +# Generated by Django 2.1.2 on 2020-03-08 11:52 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('locations', '0027_auto_20200308_1148'), + ] + + operations = [ + migrations.RenameModel( + old_name='Walk', + new_name='Track', + ), + ] |