# -*- coding: utf-8 -*- # Generated by Django 1.11.6 on 2018-03-28 06:16 from __future__ import unicode_literals import multiselectfield.db.fields from django.db import migrations class Migration(migrations.Migration): dependencies = [("map", "0040_auto_20180328_0309")] operations = [ migrations.AlterField( 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, verbose_name="Reasons this is a negative case study", ), ) ]