# -*- coding: utf-8 -*- # Generated by Django 1.11.6 on 2017-11-02 23:00 from __future__ import unicode_literals from django.db import migrations from django.db import models class Migration(migrations.Migration): dependencies = [("map", "0024_auto_20171102_2250")] operations = [ migrations.AddField( model_name="casestudy", name="minerals_or_commodities_other", field=models.CharField( blank=True, default=None, help_text="Enter the mineral commodity that isn't in the list.", max_length=64, null=True, verbose_name="Other mineral commodity", ), ), migrations.AddField( model_name="casestudy", name="use_in_energy_economy", field=models.CharField( blank=True, choices=[ ("WTM", "Wind turbine manufacturing"), ("SPM", "Solar panel manufacturing"), ("STM", "Solar thermal system manufacturing"), ("HGM", "Hydropower generator manufacturing"), ("GGM", "Geothermal generator manufacturing"), ("ESS", "Energy storage (inc. battery systems)"), ("OTR", "Others"), ], default=None, help_text="Select the potential use of the minerals in the renewable energy economy", max_length=3, null=True, verbose_name="Potential user in renewable energy economy", ), ), migrations.AddField( model_name="casestudy", name="use_in_energy_economy_other", field=models.CharField( blank=True, default=None, max_length=128, null=True, verbose_name="Other use in energy economy", ), ), ]