50 lines
1.9 KiB
Python
50 lines
1.9 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.6 on 2017-11-03 13:28
|
|
from __future__ import unicode_literals
|
|
|
|
import multiselectfield.db.fields
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [("map", "0028_auto_20171102_2358")]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="casestudy",
|
|
name="negative_case_reasons",
|
|
field=multiselectfield.db.fields.MultiSelectField(
|
|
blank=True,
|
|
choices=[
|
|
("VOLR", "Violation of land rights"),
|
|
(
|
|
"VOHR",
|
|
"Violation of fundamental human rights, indigenous rights and/or other collective rights",
|
|
),
|
|
(
|
|
"EIMP",
|
|
"Environmental impacts (severe impacts on ecosystems / violation of laws, plans or programs of environmental conservation or territorial governance systems etc.",
|
|
),
|
|
(
|
|
"NCUL",
|
|
"Negative cultural impacts (erosion/destruction of bio-cultural heritage, impacts on sacred land etc)",
|
|
),
|
|
(
|
|
"AGGR",
|
|
"Aggression/threats to community members opposed to the project, collaboration with organized crime etc",
|
|
),
|
|
("ALAB", "Abusive labour practices"),
|
|
(
|
|
"CRUP",
|
|
"Corruption and/or irregular permitting or contracting, conflicts of interest etc",
|
|
),
|
|
("OTHR", "Other reasons"),
|
|
],
|
|
default=None,
|
|
max_length=39,
|
|
null=True,
|
|
),
|
|
)
|
|
]
|