From 8ddc0894a15ede57d562579d8a737a0a2f49a696 Mon Sep 17 00:00:00 2001 From: Carl van Tonder Date: Mon, 30 Apr 2018 22:23:45 -0400 Subject: [PATCH] Clean-up migration --- .../map/migrations/0058_auto_20180429_2205.py | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 apps/map/migrations/0058_auto_20180429_2205.py diff --git a/apps/map/migrations/0058_auto_20180429_2205.py b/apps/map/migrations/0058_auto_20180429_2205.py new file mode 100644 index 0000000..c85401b --- /dev/null +++ b/apps/map/migrations/0058_auto_20180429_2205.py @@ -0,0 +1,30 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.6 on 2018-04-29 22:05 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('map', '0057_auto_20180423_0220'), + ] + + operations = [ + migrations.AlterField( + model_name='casestudy', + name='official_project_documents', + field=models.ManyToManyField(blank=True, help_text='Attach any legal or official documents that relate to the project.', related_name='official_project_document_for', to='files.File', verbose_name='Official project documents'), + ), + migrations.AlterField( + model_name='casestudy', + name='other_documents', + field=models.ManyToManyField(blank=True, help_text='Attach any other documents that relate to the project.', related_name='other_document_for', to='files.File', verbose_name='Other documents'), + ), + migrations.AlterField( + model_name='casestudy', + name='shapefiles', + field=models.ManyToManyField(blank=True, help_text='If you have territory that you would like to show in relation to this project - e.g. Bienes Comunales de Ixtepec etc. This is a set of 3 or more (often 5-6) files with file extensions like .cpg, .dbf, .prj, .qpj, .shp, .shx', related_name='shapefile_for', to='files.File', verbose_name='Shapefiles'), + ), + ]