ojuso-map/apps/map/migrations/0045_auto_20180331_0517.py

45 lines
1.4 KiB
Python
Raw Normal View History

2018-03-31 05:33:35 +00:00
# -*- coding: utf-8 -*-
# Generated by Django 1.11.6 on 2018-03-31 05:17
from __future__ import unicode_literals
import phonenumber_field.modelfields
2019-08-19 21:53:34 +00:00
from django.db import migrations
from django.db import models
2018-03-31 05:33:35 +00:00
class Migration(migrations.Migration):
2019-08-19 21:37:32 +00:00
dependencies = [("map", "0044_auto_20180331")]
2018-03-31 05:33:35 +00:00
operations = [
migrations.AlterField(
2019-08-19 21:37:32 +00:00
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",
),
2018-03-31 05:33:35 +00:00
),
migrations.AlterField(
2019-08-19 21:37:32 +00:00
model_name="casestudy",
name="shown_on_other_platforms",
field=models.BooleanField(
default=True,
verbose_name="Is this case study shown on other platforms?",
),
2018-03-31 05:33:35 +00:00
),
migrations.AlterField(
2019-08-19 21:37:32 +00:00
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",
),
2018-03-31 05:33:35 +00:00
preserve_default=False,
),
]