2017-11-18 16:56:09 +00:00
# -*- coding: utf-8 -*-
# Generated by Django 1.11.6 on 2017-11-01 15:08
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 " , " 0016_auto_20171031_1442 " ) ]
2017-11-18 16:56:09 +00:00
operations = [
migrations . AddField (
2019-08-19 21:37:32 +00:00
model_name = " casestudy " ,
name = " associated_infrastructure " ,
field = models . CharField (
blank = True ,
default = None ,
help_text = " List any associated infrastructure in the locality (e.g. tailings dams/mine waste storage and treatment facilities; ore processing facilities; smelting facilities; hydroelectric dams/energy infrastructure; transport infrastructure e.g. roads or rail. " ,
max_length = 256 ,
null = True ,
verbose_name = " Associated infrastructure in the locality " ,
) ,
2017-11-18 16:56:09 +00:00
) ,
migrations . AddField (
2019-08-19 21:37:32 +00:00
model_name = " casestudy " ,
name = " discharge_time " ,
field = models . BigIntegerField (
blank = True ,
default = None ,
help_text = " Enter the time it takes to discharge from full capacity at maximum power output (in seconds) (1h=3600s) " ,
null = True ,
verbose_name = " Time for discharge from full capacity " ,
) ,
2017-11-18 16:56:09 +00:00
) ,
migrations . AddField (
2019-08-19 21:37:32 +00:00
model_name = " casestudy " ,
name = " maximum_power_output " ,
field = models . BigIntegerField (
blank = True ,
default = None ,
help_text = " Enter the maximum power output of the storage system in Watts (W). (W=J/s) " ,
null = True ,
verbose_name = " Maximum power output " ,
) ,
2017-11-18 16:56:09 +00:00
) ,
migrations . AddField (
2019-08-19 21:37:32 +00:00
model_name = " casestudy " ,
name = " type_of_extraction " ,
field = models . CharField (
blank = True ,
choices = [
( " SUR " , " Surface (open pit/open cast/open cut mining " ) ,
( " SUB " , " Sub-surface (underground mining) " ) ,
( " SEA " , " Seabed mining " ) ,
( " URB " , " Urban mining/recycling " ) ,
( " OTH " , " Other " ) ,
] ,
default = None ,
max_length = 2 ,
null = True ,
verbose_name = " Type of extraction " ,
) ,
2017-11-18 16:56:09 +00:00
) ,
migrations . AddField (
2019-08-19 21:37:32 +00:00
model_name = " casestudy " ,
name = " type_of_extraction_other " ,
field = models . CharField (
blank = True ,
default = None ,
max_length = 128 ,
null = True ,
verbose_name = " Other type of extraction " ,
) ,
2017-11-18 16:56:09 +00:00
) ,
migrations . AlterField (
2019-08-19 21:37:32 +00:00
model_name = " casestudy " ,
name = " biomass_detail " ,
field = models . CharField (
blank = True ,
default = None ,
help_text = " If you selected biogas or biomass, please describe the feedstock (where the fuel came from e.g. corn, algae, anaerobic digestion, commercial waste etc) " ,
max_length = 200 ,
null = True ,
verbose_name = " Description of feedstock " ,
) ,
2017-11-18 16:56:09 +00:00
) ,
]