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

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('theory_exam', '0003_auto_20160630_0931'),
    ]

    operations = [
        migrations.AddField(
            model_name='examchoice',
            name='payment_amount',
            field=models.FloatField(default=0, help_text=b'Amount Registration costs (&pound;), leave blank for free registration.', null=True, blank=True),
        ),
        migrations.RemoveField(
            model_name='theoryexamapplication',
            name='exam_choice',
        ),
        migrations.AddField(
            model_name='theoryexamapplication',
            name='exam_choice',
            field=models.ManyToManyField(to='theory_exam.ExamChoice', blank=True),
        ),
    ]
