ojuso-map/apps/map/migrations/0006_auto_20171007_1349.py

51 lines
1.7 KiB
Python
Raw Normal View History

# -*- 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):
2019-08-19 21:37:32 +00:00
dependencies = [("map", "0005_auto_20171006_2033")]
operations = [
migrations.AlterField(
2019-08-19 21:37:32 +00:00
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(
2019-08-19 21:37:32 +00:00
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(
2019-08-19 21:37:32 +00:00
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",
),
),
]