29 lines
854 B
Python
29 lines
854 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.6 on 2018-03-28 01:46
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations
|
|
from django.db import models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [("map", "0037_auto_20180327_0549")]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="casestudy",
|
|
name="sector_of_economy",
|
|
field=models.CharField(
|
|
choices=[
|
|
("RN", "Renewable Energy Generation"),
|
|
("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",
|
|
),
|
|
)
|
|
]
|