2018-03-31 11:38:06 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Generated by Django 1.11.6 on 2018-03-31 11:34
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2019-08-19 21:53:34 +00:00
|
|
|
from django.db import migrations
|
|
|
|
from django.db import models
|
2018-03-31 11:38:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
2019-08-19 21:37:32 +00:00
|
|
|
dependencies = [("map", "0048_auto_20180331_0933")]
|
2018-03-31 11:38:06 +00:00
|
|
|
|
|
|
|
operations = [
|
2019-08-19 21:37:32 +00:00
|
|
|
migrations.RemoveField(model_name="casestudy", name="affects_indigenous"),
|
2018-03-31 11:38:06 +00:00
|
|
|
migrations.RemoveField(
|
2019-08-19 21:37:32 +00:00
|
|
|
model_name="casestudy", name="affects_indigenous_detail"
|
2018-03-31 11:38:06 +00:00
|
|
|
),
|
|
|
|
migrations.AddField(
|
2019-08-19 21:37:32 +00:00
|
|
|
model_name="casestudy",
|
|
|
|
name="people_affected_indigenous",
|
|
|
|
field=models.TextField(
|
|
|
|
blank=True,
|
|
|
|
help_text="What group or groups of indigenous people are affected by this project? Please separate by newline.",
|
|
|
|
verbose_name="Indigenous people affected",
|
|
|
|
),
|
2018-03-31 11:38:06 +00:00
|
|
|
),
|
|
|
|
migrations.AddField(
|
2019-08-19 21:37:32 +00:00
|
|
|
model_name="casestudy",
|
|
|
|
name="people_affected_other",
|
|
|
|
field=models.TextField(
|
|
|
|
blank=True,
|
|
|
|
help_text="What other group or groups of people are affected by this project? Please separate by newline.",
|
|
|
|
verbose_name="Non-indigenous people affected",
|
|
|
|
),
|
2018-03-31 11:38:06 +00:00
|
|
|
),
|
|
|
|
]
|