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

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('certifications', '0008_examattempt_timer_and_cancel'),
    ]

    operations = [
        migrations.AddField(
            model_name='certificationprogram',
            name='results_delay_minutes',
            field=models.PositiveIntegerField(default=5, help_text='Minutes after submission before the score is shown to the candidate (default 5). Use 0 for immediate results. Cancelled attempts show immediately.'),
        ),
    ]
