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/0027_auto_20200308_1148.py | |
parent | b8551e606d7c1c8b405fc1e8b115db8b81db75eb (diff) |
added location migrations
Diffstat (limited to 'app/locations/migrations/0027_auto_20200308_1148.py')
-rw-r--r-- | app/locations/migrations/0027_auto_20200308_1148.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/app/locations/migrations/0027_auto_20200308_1148.py b/app/locations/migrations/0027_auto_20200308_1148.py new file mode 100644 index 0000000..3db036a --- /dev/null +++ b/app/locations/migrations/0027_auto_20200308_1148.py @@ -0,0 +1,22 @@ +# Generated by Django 2.1.2 on 2020-03-08 11:48 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('locations', '0026_walk_subtitle'), + ] + + operations = [ + migrations.AlterModelOptions( + name='walk', + options={'ordering': ('-date_walked',)}, + ), + migrations.AddField( + model_name='walk', + name='pace', + field=models.CharField(choices=[('1', 'Walk'), ('2', 'Run')], default=2, max_length=1), + ), + ] |