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

from django.db import migrations, models
import django.core.files.storage


class Migration(migrations.Migration):

    dependencies = [
        ('cpd', '0012_auto_20181013_1804'),
    ]

    operations = [
        migrations.AlterField(
            model_name='cpdsubmission',
            name='evidence',
            field=models.FileField(storage=django.core.files.storage.FileSystemStorage(location=b'/Applications/MAMP/htdocs/svtgbi/private/'), upload_to=b'cpd', blank=True, help_text=b'Please upload any Evidence (PDF file or similar) to support this CPD application.', null=True, verbose_name=b'Evidence (Old)'),
        ),
        migrations.AlterField(
            model_name='cpdsubmission',
            name='type_of_learning',
            field=models.CharField(blank=True, max_length=200, null=True, choices=[(b'Educational', b'Educational'), (b'Professional', b'Professional'), (b'Work Based', b'Work Based'), (b'Self Directed', b'Self Directed')]),
        ),
        migrations.AlterField(
            model_name='cpdsubmissionevidence',
            name='file',
            field=models.FileField(help_text=b'Please upload any Evidence (PDF file or similar) to support this CPD application.', upload_to=b'cpd', storage=django.core.files.storage.FileSystemStorage(location=b'/Applications/MAMP/htdocs/svtgbi/private/'), verbose_name=b'Evidence'),
        ),
    ]
