diff options
author | luxagraf <sng@luxagraf.net> | 2019-12-29 18:19:26 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2019-12-29 18:19:26 -0500 |
commit | 09abece4982e8dceabe1dd8d678639205a4a6208 (patch) | |
tree | 8b27a3369ae6f61e7f0ed52d64e261b556157f00 /app/locations/migrations/0022_walk_slug.py | |
parent | e47d256783c9d466ab34b0632c70ac767011f91e (diff) |
Added new GPX tracking model and Walk to locations
Diffstat (limited to 'app/locations/migrations/0022_walk_slug.py')
-rw-r--r-- | app/locations/migrations/0022_walk_slug.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/app/locations/migrations/0022_walk_slug.py b/app/locations/migrations/0022_walk_slug.py new file mode 100644 index 0000000..b217021 --- /dev/null +++ b/app/locations/migrations/0022_walk_slug.py @@ -0,0 +1,19 @@ +# Generated by Django 2.1.2 on 2019-12-29 18:04 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('locations', '0021_walk'), + ] + + operations = [ + migrations.AddField( + model_name='walk', + name='slug', + field=models.SlugField(default='tk'), + preserve_default=False, + ), + ] |