# Generated by Django 5.2.14 on 2026-06-29 22:47

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ("rims_projects", "0005_beneficiary_beneficiaryattendance"),
    ]

    operations = [
        migrations.AddField(
            model_name="milestone",
            name="actual_completion_date",
            field=models.DateField(
                blank=True, help_text="Date the milestone was actually completed.", null=True
            ),
        ),
        migrations.AddField(
            model_name="milestone",
            name="progress_note",
            field=models.TextField(
                blank=True,
                help_text="Awardee note on progress — what was done, any delays or issues.",
            ),
        ),
    ]
