26 lines
794 B
Python
26 lines
794 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Generated by Django 1.11.6 on 2018-05-25 00:52
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('map', '0062_auto_20180525_0035'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='casestudy',
|
||
|
name='key_actors_involved',
|
||
|
field=models.TextField(blank=True, null=True, verbose_name='Key actors involved (individual/organisational)'),
|
||
|
),
|
||
|
migrations.AlterField(
|
||
|
model_name='casestudy',
|
||
|
name='who_has_been_involved',
|
||
|
field=models.TextField(blank=True, null=True, verbose_name='Which communities, groups and organisations have been involved?'),
|
||
|
),
|
||
|
]
|