Add non-indigenous people list, as per client request
This commit is contained in:
33
apps/map/migrations/0049_auto_20180331_1134.py
Normal file
33
apps/map/migrations/0049_auto_20180331_1134.py
Normal file
@ -0,0 +1,33 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.11.6 on 2018-03-31 11:34
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('map', '0048_auto_20180331_0933'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RemoveField(
|
||||
model_name='casestudy',
|
||||
name='affects_indigenous',
|
||||
),
|
||||
migrations.RemoveField(
|
||||
model_name='casestudy',
|
||||
name='affects_indigenous_detail',
|
||||
),
|
||||
migrations.AddField(
|
||||
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(
|
||||
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'),
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user