# -*- coding: utf-8 -*- # Generated by Django 1.10.7 on 2017-10-07 13:49 from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('map', '0005_auto_20171006_2033'), ] operations = [ migrations.AlterField( model_name='casestudy', name='location_context', field=models.CharField(choices=[('RUR', 'Rural'), ('URB', 'Urban')], help_text='Select the context that is most applicable to this case study.', max_length=3, verbose_name='Location'), ), migrations.AlterField( model_name='casestudy', name='positive_or_negative', field=models.CharField(choices=[('P', 'Positive'), ('N', 'Negative')], help_text='Is the case study a positive case or a negative case?', max_length=1, verbose_name='Positive or negative?'), ), migrations.AlterField( model_name='casestudy', name='sector_of_economy', field=models.CharField(choices=[('Renewable Energy Generation', (('WND', 'Wind'), ('SOL', 'Solar'), ('HYD', 'Hydro'))), ('PG', 'Power Grids'), ('SM', 'Supply of Minerals')], help_text='Which sector of the renewable energy economy is most relevant?', max_length=3, verbose_name='Sector of economy'), ), ]