From 946ed7aee8006a4cbc0c45bafc518b6343b88f20 Mon Sep 17 00:00:00 2001 From: Raphael Das Gupta Date: Thu, 11 May 2017 14:11:20 +0200 Subject: [PATCH] docker-compose run frontend web_frontend/manage.py makemigrations; docker-compose run mediator osmaxx_conversion_service/manage.py makemigrations --- .../migrations/0012_auto_20170511_1407.py | 20 +++++++++++++++++++ .../migrations/0057_auto_20170511_1406.py | 20 +++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 osmaxx/conversion/migrations/0012_auto_20170511_1407.py create mode 100644 osmaxx/excerptexport/migrations/0057_auto_20170511_1406.py diff --git a/osmaxx/conversion/migrations/0012_auto_20170511_1407.py b/osmaxx/conversion/migrations/0012_auto_20170511_1407.py new file mode 100644 index 000000000..d708a6883 --- /dev/null +++ b/osmaxx/conversion/migrations/0012_auto_20170511_1407.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.10.5 on 2017-05-11 12:07 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('conversion', '0011_remove_falsely_zeroed_unzipped_result_size_values_20160718_1445'), + ] + + operations = [ + migrations.AlterField( + model_name='parametrization', + name='out_format', + field=models.CharField(choices=[('fgdb', 'Esri File Geodatabase'), ('shapefile', 'Esri Shapefile'), ('gpkg', 'GeoPackage'), ('spatialite', 'SpatiaLite'), ('garmin', 'Garmin navigation & map data'), ('pbf', 'OSM Protocolbuffer Binary Format')], max_length=100, verbose_name='out format'), + ), + ] diff --git a/osmaxx/excerptexport/migrations/0057_auto_20170511_1406.py b/osmaxx/excerptexport/migrations/0057_auto_20170511_1406.py new file mode 100644 index 000000000..431e87993 --- /dev/null +++ b/osmaxx/excerptexport/migrations/0057_auto_20170511_1406.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.10.5 on 2017-05-11 12:06 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('excerptexport', '0056_auto_20160919_1458'), + ] + + operations = [ + migrations.AlterField( + model_name='export', + name='file_format', + field=models.CharField(choices=[('fgdb', 'Esri File Geodatabase'), ('shapefile', 'Esri Shapefile'), ('gpkg', 'GeoPackage'), ('spatialite', 'SpatiaLite'), ('garmin', 'Garmin navigation & map data'), ('pbf', 'OSM Protocolbuffer Binary Format')], max_length=10, verbose_name='file format / data format'), + ), + ]