22 lines
555 B
Python
22 lines
555 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.10.7 on 2017-10-07 14:23
|
|
from __future__ import unicode_literals
|
|
|
|
import django_extensions.db.fields
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [("map", "0006_auto_20171007_1349")]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="casestudy",
|
|
name="slug",
|
|
field=django_extensions.db.fields.AutoSlugField(
|
|
blank=True, editable=False, populate_from=["entry_name"]
|
|
),
|
|
)
|
|
]
|