39 lines
1.2 KiB
Python
39 lines
1.2 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.6 on 2017-11-02 22:23
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations
|
|
from django.db import models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [("map", "0020_auto_20171102_2219")]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="casestudy",
|
|
name="project_life_span",
|
|
field=models.CharField(
|
|
blank=None,
|
|
default=None,
|
|
help_text="e.g. 12 years of production, 15 years overall",
|
|
max_length=200,
|
|
null=True,
|
|
verbose_name="Project life span",
|
|
),
|
|
),
|
|
migrations.AddField(
|
|
model_name="casestudy",
|
|
name="size_of_concessions",
|
|
field=models.CharField(
|
|
blank=None,
|
|
default=None,
|
|
help_text="Describe the size of concession(s) granted to company/companies (e.g. 'one concession encompassing 2,300 hectares')",
|
|
max_length=200,
|
|
null=True,
|
|
verbose_name="Size of concessions",
|
|
),
|
|
),
|
|
]
|