From 7ef413bd5e13865e9b8fc5cc1a8af3cfe28b61a0 Mon Sep 17 00:00:00 2001 From: luxagraf Date: Sun, 8 Mar 2020 11:54:02 -0400 Subject: added location migrations --- .../migrations/0027_auto_20200308_1148.py | 22 ++++++++++++++++++++++ .../migrations/0028_auto_20200308_1152.py | 17 +++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 app/locations/migrations/0027_auto_20200308_1148.py create mode 100644 app/locations/migrations/0028_auto_20200308_1152.py 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), + ), + ] 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', + ), + ] -- cgit v1.2.3