Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
0038_subject_pd_family_allow_null.py 734 B
# -*- coding: utf-8 -*-
# Generated by Django 1.10.3 on 2017-04-26 06:58
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):
    dependencies = [
        ('web', '0037_appointment_types_descriptions_changes'),
    ]

    operations = [
        migrations.AlterField(
            model_name='contactattempt',
            name='datetime_when',
            field=models.DateTimeField(help_text=b'When did the contact occurred?', verbose_name=b'When'),
        ),
        migrations.AlterField(
            model_name='subject',
            name='pd_in_family',
            field=models.NullBooleanField(default=False, verbose_name=b'PD in family'),
        ),
    ]