Save the form type (long, short) with the case study

This commit is contained in:
2019-03-04 20:41:15 +00:00
parent 3c45e38fd5
commit f8d4cfe755
3 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,18 @@
# Generated by Django 2.1.1 on 2019-03-04 20:40
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('map', '0075_auto_20190304_2016'),
]
operations = [
migrations.AddField(
model_name='casestudy',
name='form_type',
field=models.CharField(blank=True, max_length=16),
),
]