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

from django.db import models, migrations


class Migration(migrations.Migration):

    dependencies = [
        ('exam_application', '0021_examapplicationreference_job_role'),
    ]

    operations = [
        migrations.AddField(
            model_name='examapplication',
            name='payment_type',
            field=models.CharField(blank=True, max_length=20, null=True, choices=[('bacs', 'BACS'), ('standing_order', 'Standing Order'), ('cheque', 'Cheque'), ('credit_card', 'Credit Card')]),
        ),
        migrations.AlterField(
            model_name='examform',
            name='payment_amount',
            field=models.FloatField(default=0, help_text=b'Amount Registration costs (&pound;), leave blank for free registration.', null=True, blank=True),
        ),
    ]
