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/0020_auto_20191229_1600.py | |
parent | e47d256783c9d466ab34b0632c70ac767011f91e (diff) |
Added new GPX tracking model and Walk to locations
Diffstat (limited to 'app/locations/migrations/0020_auto_20191229_1600.py')
-rw-r--r-- | app/locations/migrations/0020_auto_20191229_1600.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/app/locations/migrations/0020_auto_20191229_1600.py b/app/locations/migrations/0020_auto_20191229_1600.py new file mode 100644 index 0000000..773d985 --- /dev/null +++ b/app/locations/migrations/0020_auto_20191229_1600.py @@ -0,0 +1,18 @@ +# Generated by Django 2.1.2 on 2019-12-29 16:00 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('locations', '0019_gpxfile_gpxpoint_gpxtrack'), + ] + + operations = [ + migrations.AlterField( + model_name='gpxfile', + name='raw_data', + field=models.TextField(blank=True), + ), + ] |