Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
0075_auto_20171201_1252.py 972 B
# -*- coding: utf-8 -*-
# Generated by Django 1.10.7 on 2017-12-01 12:52
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('web', '0074_auto_20171201_1038'),
    ]

    operations = [
        migrations.AlterField(
            model_name='studysubject',
            name='nd_number',
            field=models.CharField(blank=True, max_length=25, verbose_name=b'ND number'),
        ),
        migrations.AlterField(
            model_name='studysubject',
            name='screening_number',
            field=models.CharField(blank=True, max_length=50, null=True, verbose_name=b'Screening number'),
        ),
        migrations.AlterField(
            model_name='studysubject',
            name='type',
            field=models.CharField(blank=True, choices=[(b'P', b'PATIENT'), (b'C', b'CONTROL')], max_length=1, null=True, verbose_name=b'Type'),
        ),
    ]