# Generated by Django 5.2.1 on 2026-07-23 09:08

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('certifications', '0007_certificationapplication_promo_code'),
    ]

    operations = [
        migrations.AddField(
            model_name='examattempt',
            name='cancel_reason',
            field=models.CharField(blank=True, help_text='e.g. tab_leave, browser_leave', max_length=64),
        ),
        migrations.AddField(
            model_name='examattempt',
            name='cancelled_at',
            field=models.DateTimeField(blank=True, null=True),
        ),
        migrations.AddField(
            model_name='examattempt',
            name='timer_started_at',
            field=models.DateTimeField(blank=True, help_text='Set when the candidate finishes the practice question and the real exam begins.', null=True),
        ),
    ]
