# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('exam_application', '0031_examapplication_reference_upload'),
    ]

    operations = [
        migrations.AddField(
            model_name='examapplication',
            name='other_sites_worked',
            field=models.TextField(null=True, verbose_name=b'Please detail all locations and dates of any other sites where you have worked during your training', blank=True),
        ),
        migrations.AlterField(
            model_name='examapplication',
            name='scans_completed',
            field=models.BooleanField(default=False, verbose_name=b'I have carried out at least 25 scans from each of core modalities 1-3 in the 3 months prior to applying to sit the practical exam and have ensured that local protocols and all of these anonymised reports are attached to this application.'),
        ),
    ]
