ojuso-map/apps/map/migrations/0033_auto_20171103_2230.py

96 lines
4.1 KiB
Python
Raw Normal View History

# -*- coding: utf-8 -*-
# Generated by Django 1.11.6 on 2017-11-03 22:30
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", "0032_auto_20171103_1745")]
operations = [
migrations.AddField(
2019-08-19 21:37:32 +00:00
model_name="casestudy",
name="isolated_or_widespread_description",
field=models.TextField(
blank=True,
default=None,
help_text="Is this an isolated project or are there similar projects in the same geographic area? If there are more, can you describe them? Are there any significant cumulative synergistic effects?",
null=True,
verbose_name="Describe if the project is isolated or commonplace.",
),
),
migrations.AddField(
2019-08-19 21:37:32 +00:00
model_name="casestudy",
name="negative_case_reasons_other",
field=models.CharField(
blank=True,
default=None,
help_text="Please include other reasons, noting that we aim to focus on projects with substantive negative impacts on vulnerable groups.",
max_length=512,
null=True,
verbose_name="Other reason for negative case",
),
),
migrations.AddField(
2019-08-19 21:37:32 +00:00
model_name="casestudy",
name="negative_socioenvironmental_impacts",
field=models.TextField(
blank=True,
default=None,
help_text="Provide a detailed description of the negative socio-environmental impacts (please provide all relevant details, such as type of ecosystem and presence of any existing reserve in the area, , specific communities affected by the project, total geographic footprint of the project, and tenure system affected in the case of land grabs, kind of permits that were irregularly issued if this is the case.",
null=True,
verbose_name="Describe the negative socio-environmental impacts",
),
),
migrations.AddField(
2019-08-19 21:37:32 +00:00
model_name="casestudy",
name="participation_mechanisms",
field=models.CharField(
blank=True,
default=None,
help_text="e.g. direct action, local referendums, legal cases, letters or petitions etc",
max_length=512,
null=True,
verbose_name="What mechanisms of participation have been used?",
),
),
migrations.AddField(
2019-08-19 21:37:32 +00:00
model_name="casestudy",
name="potential_partnerships",
field=models.CharField(
blank=True,
default=None,
help_text="Are you looking for partnerships or do you have any clearly identified need? If so, please describe it here.",
max_length=512,
null=True,
verbose_name="Describe potential partnerships",
),
),
migrations.AddField(
2019-08-19 21:37:32 +00:00
model_name="casestudy",
name="when_did_organising_start",
field=models.CharField(
blank=True,
default=None,
help_text="Before the project started? During project implementation? After project implementation? Describe in your own words.",
max_length=512,
null=True,
verbose_name="When did local organising efforts begin?",
),
),
migrations.AddField(
2019-08-19 21:37:32 +00:00
model_name="casestudy",
name="who_has_been_involved",
field=models.CharField(
blank=True,
default=None,
max_length=512,
null=True,
verbose_name="Which communities, groups and organisations have been involved?",
),
),
]