From d990f60ab856abc4992529bc201aa11d5fd93aec Mon Sep 17 00:00:00 2001 From: Raphael Das Gupta Date: Thu, 11 May 2017 11:02:45 +0200 Subject: [PATCH 1/2] docker-compose run frontend web_frontend/manage.py makemigrations --- .../migrations/0005_auto_20170511_1100.py | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 osmaxx/contrib/auth/migrations/0005_auto_20170511_1100.py diff --git a/osmaxx/contrib/auth/migrations/0005_auto_20170511_1100.py b/osmaxx/contrib/auth/migrations/0005_auto_20170511_1100.py new file mode 100644 index 000000000..f7182d6e6 --- /dev/null +++ b/osmaxx/contrib/auth/migrations/0005_auto_20170511_1100.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.10.5 on 2017-05-11 09:00 +from __future__ import unicode_literals + +import django.contrib.auth.validators +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('auth', '0004_add_high_priority_user_group'), + ] + + operations = [ + migrations.AlterField( + model_name='user', + name='username', + field=models.CharField(error_messages={'unique': 'A user with that username already exists.'}, help_text='Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only.', max_length=150, unique=True, validators=[django.contrib.auth.validators.UnicodeUsernameValidator()], verbose_name='username'), + ), + ] From 946ed7aee8006a4cbc0c45bafc518b6343b88f20 Mon Sep 17 00:00:00 2001 From: Raphael Das Gupta Date: Thu, 11 May 2017 14:11:20 +0200 Subject: [PATCH 2/2] 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'), + ), + ]