2017-11-18 16:56:09 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Generated by Django 1.11.6 on 2017-11-02 22:50
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2019-08-19 21:53:34 +00:00
|
|
|
from django.db import migrations
|
|
|
|
from django.db import models
|
2017-11-18 16:56:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
2019-08-19 21:37:32 +00:00
|
|
|
dependencies = [("map", "0023_auto_20171102_2232")]
|
2017-11-18 16:56:09 +00:00
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AddField(
|
2019-08-19 21:37:32 +00:00
|
|
|
model_name="casestudy",
|
|
|
|
name="additional_technical_details",
|
|
|
|
field=models.CharField(
|
|
|
|
blank=True,
|
|
|
|
default=None,
|
|
|
|
help_text="Add any additional details such as: length, from-to, voltage, substations etc",
|
|
|
|
max_length=512,
|
|
|
|
null=True,
|
|
|
|
verbose_name="Additional technical or economic details",
|
|
|
|
),
|
2017-11-18 16:56:09 +00:00
|
|
|
),
|
|
|
|
migrations.AddField(
|
2019-08-19 21:37:32 +00:00
|
|
|
model_name="casestudy",
|
|
|
|
name="minerals_or_commodities",
|
|
|
|
field=models.CharField(
|
|
|
|
blank=True,
|
|
|
|
choices=[
|
|
|
|
("ALU", "Aluminium (Bauxite)"),
|
|
|
|
("ARS", "Arsenic"),
|
|
|
|
("BER", "Beryllium"),
|
|
|
|
("CAD", "Cadmium"),
|
|
|
|
("CHR", "Chromium"),
|
|
|
|
("COK", "Coking"),
|
|
|
|
("COA", "Coal (for steel)"),
|
|
|
|
("COP", "Copper"),
|
|
|
|
("GAL", "Gallium"),
|
|
|
|
("GER", "Germanium"),
|
|
|
|
("GLD", "Gold"),
|
|
|
|
(
|
|
|
|
"HRE",
|
|
|
|
"Heavy Rare Earth Elements (Gadolinium, Terbium, Dysprosium, Holmium, Erbium, Thulium, Ytterbium, Lutetium, Yttrium, Scandium)",
|
|
|
|
),
|
|
|
|
("IRN", "Iron"),
|
|
|
|
(
|
|
|
|
"LRE",
|
|
|
|
"Light Rare Earth Elements (Lanthanum, Cerium, Praseodymium, Neodymium, Promethium, Samarium, Europium)",
|
|
|
|
),
|
|
|
|
("LED", "Lead"),
|
|
|
|
("LIT", "Lithium"),
|
|
|
|
("MAN", "Manganese"),
|
|
|
|
("MER", "Mercury"),
|
|
|
|
("MOL", "Molybdenum"),
|
|
|
|
("NIC", "Nickel"),
|
|
|
|
("NIO", "Niobium"),
|
|
|
|
(
|
|
|
|
"PGM",
|
|
|
|
"Platinum group metals (ruthenium, rhodium, palladium, osmium, iridium, and platinum)",
|
|
|
|
),
|
|
|
|
("RHE", "Rhenium"),
|
|
|
|
("SIL", "Silicon"),
|
|
|
|
("SIV", "Silver"),
|
|
|
|
("TAN", "Tantalum"),
|
|
|
|
("TEL", "Tellurium"),
|
|
|
|
("THA", "Thallium"),
|
|
|
|
("TIN", "Tin"),
|
|
|
|
("TIT", "Titanium"),
|
|
|
|
("TUN", "Tungsten"),
|
|
|
|
("VAN", "Vanadium"),
|
|
|
|
("ZNC", "Zinc"),
|
|
|
|
("OTR", "Other"),
|
|
|
|
],
|
|
|
|
default=None,
|
|
|
|
help_text="Select the mineral commodity that is primarily mined in this project",
|
|
|
|
max_length=3,
|
|
|
|
null=True,
|
|
|
|
verbose_name="Mineral commodity/commodities",
|
|
|
|
),
|
2017-11-18 16:56:09 +00:00
|
|
|
),
|
|
|
|
]
|