# Generated by Django 3.2.8 on 2021-11-01 13:23

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('exam', '0037_auto_20211101_1259'),
    ]

    operations = [
        migrations.AddField(
            model_name='corrections',
            name='blank_choices',
            field=models.IntegerField(blank=True, null=True),
        ),
        migrations.AddField(
            model_name='corrections',
            name='correct_choices',
            field=models.IntegerField(blank=True, null=True),
        ),
        migrations.AddField(
            model_name='corrections',
            name='group_index',
            field=models.IntegerField(default=1),
            preserve_default=False,
        ),
        migrations.AddField(
            model_name='corrections',
            name='question_index',
            field=models.IntegerField(default=1),
            preserve_default=False,
        ),
        migrations.AddField(
            model_name='corrections',
            name='wrong_choices',
            field=models.IntegerField(blank=True, null=True),
        ),
    ]
