2017-10-31 14:57:26 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Generated by Django 1.11.6 on 2017-10-31 14:42
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2019-08-19 21:53:34 +00:00
|
|
|
from django.db import migrations
|
|
|
|
from django.db import models
|
2017-10-31 14:57:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
2019-08-19 21:37:32 +00:00
|
|
|
dependencies = [("map", "0015_auto_20171030_1550")]
|
2017-10-31 14:57:26 +00:00
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AddField(
|
2019-08-19 21:37:32 +00:00
|
|
|
model_name="casestudy",
|
|
|
|
name="definition_of_affected_territories",
|
|
|
|
field=models.CharField(
|
|
|
|
blank=True,
|
|
|
|
default=None,
|
|
|
|
help_text="In your own words, define the territories that the project will affect.",
|
|
|
|
max_length=512,
|
|
|
|
null=True,
|
|
|
|
verbose_name="Definition of affected territories",
|
|
|
|
),
|
2017-10-31 14:57:26 +00:00
|
|
|
),
|
|
|
|
migrations.AddField(
|
2019-08-19 21:37:32 +00:00
|
|
|
model_name="casestudy",
|
|
|
|
name="official_project_documents",
|
|
|
|
field=models.FileField(
|
|
|
|
blank=True,
|
|
|
|
default=None,
|
|
|
|
help_text="Attach any legal or official documents that relate to the project.",
|
|
|
|
null=True,
|
|
|
|
upload_to="",
|
|
|
|
verbose_name="Official project documents",
|
|
|
|
),
|
2017-10-31 14:57:26 +00:00
|
|
|
),
|
|
|
|
migrations.AddField(
|
2019-08-19 21:37:32 +00:00
|
|
|
model_name="casestudy",
|
|
|
|
name="other_documents",
|
|
|
|
field=models.FileField(
|
|
|
|
blank=True,
|
|
|
|
default=None,
|
|
|
|
help_text="Attach any other documents that relate to the project.",
|
|
|
|
null=True,
|
|
|
|
upload_to="",
|
|
|
|
verbose_name="Other documents",
|
|
|
|
),
|
2017-10-31 14:57:26 +00:00
|
|
|
),
|
|
|
|
migrations.AddField(
|
2019-08-19 21:37:32 +00:00
|
|
|
model_name="casestudy",
|
|
|
|
name="shown_on_other_platforms",
|
|
|
|
field=models.NullBooleanField(
|
|
|
|
default=None,
|
|
|
|
help_text="Tick the box if you would like us to show this case study on other social media platforms",
|
|
|
|
verbose_name="Show on other platforms?",
|
|
|
|
),
|
2017-10-31 14:57:26 +00:00
|
|
|
),
|
|
|
|
migrations.AddField(
|
2019-08-19 21:37:32 +00:00
|
|
|
model_name="casestudy",
|
|
|
|
name="shown_on_other_platforms_detail",
|
|
|
|
field=models.CharField(
|
|
|
|
blank=True,
|
|
|
|
help_text="List the social media platforms that you would like us to specifically publish the case study on",
|
|
|
|
max_length=128,
|
|
|
|
null=True,
|
|
|
|
verbose_name="Show on other platforms - Detail",
|
|
|
|
),
|
2017-10-31 14:57:26 +00:00
|
|
|
),
|
|
|
|
]
|