# -*- coding: utf-8 -*- # Generated by Django 1.11.6 on 2017-10-30 15:50 from __future__ import unicode_literals from django.db import migrations from django.db import models class Migration(migrations.Migration): dependencies = [("map", "0014_auto_20171025_2035")] operations = [ migrations.AddField( model_name="casestudy", name="energy_storage_capacity", field=models.IntegerField( blank=True, default=None, help_text="Enter the total capacity of the energy storage system.", null=True, verbose_name="Energy storage capacity", ), ), migrations.AlterField( model_name="casestudy", name="affects_indigenous_detail", field=models.CharField( blank=True, default=None, help_text="What group of indigenous people does the community belong to?", max_length=256, null=True, verbose_name="Affects Indigenous - Details", ), ), ]