2017-11-18 16:56:09 +00:00
# -*- coding: utf-8 -*-
# Generated by Django 1.11.6 on 2017-11-03 22:54
from __future__ import unicode_literals
2019-08-19 21:53:34 +00:00
from django . db import migrations
from django . db import models
2017-11-18 16:56:09 +00:00
class Migration ( migrations . Migration ) :
2019-08-19 21:37:32 +00:00
dependencies = [ ( " map " , " 0033_auto_20171103_2230 " ) ]
2017-11-18 16:56:09 +00:00
operations = [
migrations . RenameField (
2019-08-19 21:37:32 +00:00
model_name = " casestudy " ,
old_name = " isolated_or_widespread_description " ,
new_name = " isolated_or_widespread " ,
2017-11-18 16:56:09 +00:00
) ,
2019-08-19 21:37:32 +00:00
migrations . RemoveField ( model_name = " casestudy " , name = " shapefiles " ) ,
2017-11-18 16:56:09 +00:00
migrations . AddField (
2019-08-19 21:37:32 +00:00
model_name = " casestudy " ,
name = " shapefiles " ,
field = models . FileField (
blank = True ,
default = None ,
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 " ,
null = True ,
upload_to = " " ,
verbose_name = " Shapefiles " ,
) ,
2017-11-18 16:56:09 +00:00
) ,
]