61 lines
2.0 KiB
Python
61 lines
2.0 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.6 on 2017-11-02 23:46
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations
|
|
from django.db import models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [("map", "0026_auto_20171102_2326")]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="casestudy",
|
|
name="identified_partnerships",
|
|
field=models.CharField(
|
|
blank=True,
|
|
default=None,
|
|
help_text="Are you looking for partnerships or have any clearly identified need? If so, please describe it here.",
|
|
max_length=256,
|
|
null=True,
|
|
verbose_name="Identified partnerships",
|
|
),
|
|
),
|
|
migrations.AddField(
|
|
model_name="casestudy",
|
|
name="key_actors_involved",
|
|
field=models.CharField(
|
|
blank=True,
|
|
default=None,
|
|
max_length=256,
|
|
null=True,
|
|
verbose_name="Key actors involved (individual/organisational)",
|
|
),
|
|
),
|
|
migrations.AddField(
|
|
model_name="casestudy",
|
|
name="obstacles_and_hindrances",
|
|
field=models.CharField(
|
|
blank=True,
|
|
default=None,
|
|
help_text="List any obstacles or hindrances experienced in the course of the project",
|
|
max_length=512,
|
|
null=True,
|
|
verbose_name="Obstacles and hindrances",
|
|
),
|
|
),
|
|
migrations.AddField(
|
|
model_name="casestudy",
|
|
name="project_status_detail",
|
|
field=models.TextField(
|
|
blank=True,
|
|
default=None,
|
|
help_text="Describe the current status of the project, expanding beyond 'existing', 'under construction' etc",
|
|
null=True,
|
|
verbose_name="Current status of the project",
|
|
),
|
|
),
|
|
]
|