ojuso-map/apps/map/migrations/0049_auto_20180331_1134.py

37 lines
1.3 KiB
Python
Raw Normal View History

# -*- 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
class Migration(migrations.Migration):
2019-08-19 21:37:32 +00:00
dependencies = [("map", "0048_auto_20180331_0933")]
operations = [
2019-08-19 21:37:32 +00:00
migrations.RemoveField(model_name="casestudy", name="affects_indigenous"),
migrations.RemoveField(
2019-08-19 21:37:32 +00:00
model_name="casestudy", name="affects_indigenous_detail"
),
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",
),
),
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",
),
),
]