ojuso-map/apps/map/migrations/0026_auto_20171102_2326.py

47 lines
1.7 KiB
Python
Raw Normal View History

# -*- coding: utf-8 -*-
# Generated by Django 1.11.6 on 2017-11-02 23:26
from __future__ import unicode_literals
2019-08-19 21:53:34 +00:00
from django.db import migrations
from django.db import models
class Migration(migrations.Migration):
2019-08-19 21:37:32 +00:00
dependencies = [("map", "0025_auto_20171102_2300")]
operations = [
migrations.AddField(
2019-08-19 21:37:32 +00:00
model_name="casestudy",
name="positive_case_type",
field=models.CharField(
blank=True,
choices=[
("CREP", "Community renewable energy project"),
("EACP", "Energy as a commons project"),
("PSEP", "Public/state (federal, state, municipal) energy project"),
(
"CORS",
"A case of responsible sourcing/supply chain/lifecycle management",
),
],
default=None,
help_text="Select the most relevant type of positive case",
max_length=4,
null=True,
verbose_name="What kind of positive case is this entry about?",
),
),
migrations.AddField(
2019-08-19 21:37:32 +00:00
model_name="casestudy",
name="socioeconomic_benefits",
field=models.TextField(
blank=True,
default=None,
help_text="Please expand on your response given in the full description on page one. We would expect benefits to go beyond emissions savings, paying rent for land, or complying with environmental or social legislation",
null=True,
verbose_name="Socio-economic benefits",
),
),
]