# Generated manually for PRD §6.1 interview gate before awards

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ("rims_grants", "0003_add_award_status"),
    ]

    operations = [
        migrations.AddField(
            model_name="application",
            name="interview_completed",
            field=models.BooleanField(
                default=False,
                help_text="Call manager confirms interview done (required when the call mandates interviews).",
            ),
        ),
    ]
