ojuso-map/apps/map/migrations/0061_auto_20180523_1659.py

24 lines
634 B
Python
Raw Normal View History

2018-05-23 17:15:30 +00:00
# -*- coding: utf-8 -*-
# Generated by Django 1.11.6 on 2018-05-23 16:59
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
2019-08-19 21:37:32 +00:00
dependencies = [("map", "0060_project_life_span_null")]
2018-05-23 17:15:30 +00:00
operations = [
migrations.AlterField(
2019-08-19 21:37:32 +00:00
model_name="casestudy",
name="project_life_span",
field=models.CharField(
blank=True,
help_text="e.g. 12 years of production, 15 years overall",
max_length=200,
verbose_name="Project life span",
),
)
2018-05-23 17:15:30 +00:00
]