Run black over entire codebase
This commit is contained in:
@ -7,23 +7,25 @@ from django.db import migrations, models
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('map', '0033_auto_20171103_2230'),
|
||||
]
|
||||
dependencies = [("map", "0033_auto_20171103_2230")]
|
||||
|
||||
operations = [
|
||||
migrations.RenameField(
|
||||
model_name='casestudy',
|
||||
old_name='isolated_or_widespread_description',
|
||||
new_name='isolated_or_widespread',
|
||||
),
|
||||
migrations.RemoveField(
|
||||
model_name='casestudy',
|
||||
name='shapefiles',
|
||||
model_name="casestudy",
|
||||
old_name="isolated_or_widespread_description",
|
||||
new_name="isolated_or_widespread",
|
||||
),
|
||||
migrations.RemoveField(model_name="casestudy", name="shapefiles"),
|
||||
migrations.AddField(
|
||||
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'),
|
||||
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",
|
||||
),
|
||||
),
|
||||
]
|
||||
|
Reference in New Issue
Block a user