40 lines
1.2 KiB
Python
40 lines
1.2 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.6 on 2017-11-02 22:05
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations
|
|
from django.db import models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [("map", "0017_auto_20171101_1508")]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name="casestudy", name="definition_of_affected_territories"
|
|
),
|
|
migrations.AddField(
|
|
model_name="casestudy",
|
|
name="generation_equipment_supplier",
|
|
field=models.TextField(
|
|
blank=True,
|
|
default=None,
|
|
help_text="Enter the supplier of the generation equipment. (E.g. Siemens)",
|
|
null=True,
|
|
verbose_name="Generation equipment supplier",
|
|
),
|
|
),
|
|
migrations.AddField(
|
|
model_name="casestudy",
|
|
name="name_of_territory_or_area",
|
|
field=models.CharField(
|
|
blank=True,
|
|
default=None,
|
|
max_length=512,
|
|
null=True,
|
|
verbose_name="Name of territory or area",
|
|
),
|
|
),
|
|
]
|