23 lines
691 B
Python
23 lines
691 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.6 on 2017-11-03 16:10
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations
|
|
from django.db import models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [("map", "0030_auto_20171103_1608")]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="casestudy",
|
|
name="synopsis",
|
|
field=models.TextField(
|
|
help_text="Briefly describe the project. This will be displayed at the top of the case study page. Maximum 500 chars (about 3½ tweets)",
|
|
verbose_name="Synopsis",
|
|
),
|
|
)
|
|
]
|