# -*- coding: utf-8 -*- # Generated by Django 1.11.6 on 2017-10-31 14:42 from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('map', '0015_auto_20171030_1550'), ] operations = [ migrations.AddField( model_name='casestudy', name='definition_of_affected_territories', field=models.CharField(blank=True, default=None, help_text='In your own words, define the territories that the project will affect.', max_length=512, null=True, verbose_name='Definition of affected territories'), ), migrations.AddField( model_name='casestudy', name='official_project_documents', field=models.FileField(blank=True, default=None, help_text='Attach any legal or official documents that relate to the project.', null=True, upload_to='', verbose_name='Official project documents'), ), migrations.AddField( model_name='casestudy', name='other_documents', field=models.FileField(blank=True, default=None, help_text='Attach any other documents that relate to the project.', null=True, upload_to='', verbose_name='Other documents'), ), migrations.AddField( model_name='casestudy', name='shown_on_other_platforms', field=models.NullBooleanField(default=None, help_text='Tick the box if you would like us to show this case study on other social media platforms', verbose_name='Show on other platforms?'), ), migrations.AddField( model_name='casestudy', name='shown_on_other_platforms_detail', field=models.CharField(blank=True, help_text='List the social media platforms that you would like us to specifically publish the case study on', max_length=128, null=True, verbose_name='Show on other platforms - Detail'), ), ]