# Generated by Django 5.2.13 on 2026-04-23 16:31

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ("rims_grants", "0017_alter_awardamendment_status"),
    ]

    operations = [
        migrations.AddField(
            model_name="grantcall",
            name="conflict_resolution",
            field=models.CharField(
                choices=[
                    ("majority", "Majority recommendation"),
                    ("average_threshold", "Average score threshold"),
                    ("escalate", "Escalate to manager"),
                ],
                default="escalate",
                help_text="PRD §5.1 FRFA-AM027–028. How the system resolves divergent reviewer recommendations: majority vote, average-score threshold, or manual escalation to the call manager.",
                max_length=32,
            ),
        ),
    ]
