ojuso-map/apps/map/migrations/0048_auto_20180331_0933.py
2019-08-20 00:10:20 +02:00

80 lines
3.6 KiB
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# -*- coding: utf-8 -*-
# Generated by Django 1.11.6 on 2018-03-31 09:33
from __future__ import unicode_literals
import multiselectfield.db.fields
from django.db import migrations
from django.db import models
class Migration(migrations.Migration):
dependencies = [("map", "0047_auto_20180331_0607")]
operations = [
migrations.AddField(
model_name="casestudy",
name="financial_institutions_other",
field=models.TextField(
blank=True,
help_text="List any other financial institutions not listed above. Put each on a new line.",
verbose_name="Financial institutions other",
),
),
migrations.AlterField(
model_name="casestudy",
name="financial_institutions",
field=multiselectfield.db.fields.MultiSelectField(
blank=True,
choices=[
("AfDB", "African Development Bank (AfDB)"),
("BADEA", "Arab Bank for Economic Development in Africa (BADEA)"),
("ADB", "Asian Development Bank (ADB)"),
("AIIB", "Asian Infrastructure Investment Bank (AIIB)"),
("BSTDB", "Black Sea Trade and Development Bank (BSTDB)"),
(
"CAF",
"Corporacion Andina de Fomento / Development Bank of Latin America (CAF)",
),
("CDB", "Caribbean Development Bank (CDB)"),
("CABEI", "Central American Bank for Economic Integration (CABEI)"),
("EADB", "East African Development Bank (EADB)"),
(
"ETDB",
"Economic Cooperation Organization Trade and Development Bank (ETDB)",
),
("EDB", "Eurasian Development Bank (EDB)"),
("EBRD", "European Bank for Reconstruction and Development (EBRD)"),
("EC", "European Commission (EC)"),
("EIB", "European Investment Bank (EIB)"),
("IADB", "Inter-American Development Bank Group (IDB, IADB)"),
(
"IFFIm",
"International Finance Facility for Immunisation (IFFIm)",
),
("IFAD", "International Fund for Agricultural Development (IFAD)"),
("IIB", "International Investment Bank (IIB)"),
("IsDB", "Islamic Development Bank (IsDB)"),
(
"FMO",
"Nederlandse Financieringsmaatschappij voor Ontwikkelingslanden NV (FMO)",
),
(
"NDB",
"New Development Bank (NDB) (formerly BRICS Development Bank)",
),
("NDF", "The Nordic Development Fund"),
("NIB", "Nordic Investment Bank (NIB)"),
("OFID", "OPEC Fund for International Development (OFID)"),
("BOAD", "West African Development Bank (BOAD)"),
("WB", "World Bank"),
],
default="",
help_text="Select any financial institutions that have or are considering extending loans or guarantees to the project.",
max_length=119,
verbose_name="Financial institutions",
),
preserve_default=False,
),
]