33 lines
1.2 KiB
Python
33 lines
1.2 KiB
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Generated by Django 1.11.6 on 2018-03-31 05:17
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
import phonenumber_field.modelfields
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('map', '0044_auto_20180331'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='casestudy',
|
||
|
name='contact_phone',
|
||
|
field=phonenumber_field.modelfields.PhoneNumberField(blank=True, help_text='Please include the international prefix, beginning with "+".', max_length=128, verbose_name='Phone number'),
|
||
|
),
|
||
|
migrations.AlterField(
|
||
|
model_name='casestudy',
|
||
|
name='shown_on_other_platforms',
|
||
|
field=models.BooleanField(default=True, verbose_name='Is this case study shown on other platforms?'),
|
||
|
),
|
||
|
migrations.AlterField(
|
||
|
model_name='casestudy',
|
||
|
name='shown_on_other_platforms_detail',
|
||
|
field=models.TextField(blank=True, default='', help_text='Please provide links to other places the case study appears.', verbose_name='Shown on other platforms - Detail'),
|
||
|
preserve_default=False,
|
||
|
),
|
||
|
]
|