2018-03-27 04:14:01 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Generated by Django 1.11.6 on 2018-03-27 03:34
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2019-08-19 21:53:34 +00:00
|
|
|
from django.db import migrations
|
|
|
|
from django.db import models
|
2018-03-27 04:14:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
2019-08-19 21:37:32 +00:00
|
|
|
dependencies = [("map", "0035_auto_20180326_0157")]
|
2018-03-27 04:14:01 +00:00
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AlterModelOptions(
|
2019-08-19 21:37:32 +00:00
|
|
|
name="casestudy", options={"verbose_name_plural": "case studies"}
|
2018-03-27 04:14:01 +00:00
|
|
|
),
|
|
|
|
migrations.AddField(
|
2019-08-19 21:37:32 +00:00
|
|
|
model_name="casestudy",
|
|
|
|
name="approved",
|
2018-03-27 04:14:01 +00:00
|
|
|
field=models.BooleanField(default=False),
|
|
|
|
),
|
|
|
|
]
|