ojuso-map/apps/map/migrations/0016_auto_20171031_1442.py

71 lines
2.4 KiB
Python
Raw Normal View History

# -*- 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
class Migration(migrations.Migration):
2019-08-19 21:37:32 +00:00
dependencies = [("map", "0015_auto_20171030_1550")]
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",
),
),
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",
),
),
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",
),
),
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?",
),
),
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",
),
),
]