# Generated by Django 5.2.13 on 2026-04-27 08:14

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ("core", "0021_alter_auditlog_action"),
    ]

    operations = [
        migrations.AddField(
            model_name="userprofile",
            name="date_of_birth",
            field=models.DateField(
                blank=True,
                help_text="Used to derive the youth participation indicator (AR010). Not displayed publicly.",
                null=True,
            ),
        ),
        migrations.AddField(
            model_name="userprofile",
            name="gender",
            field=models.CharField(
                blank=True,
                choices=[
                    ("female", "Female"),
                    ("male", "Male"),
                    ("non_binary", "Non-binary"),
                    ("prefer_not_to_say", "Prefer not to say"),
                    ("other", "Other"),
                ],
                db_index=True,
                help_text="Self-reported, optional. Used for the AR010 women & youth participation indicator.",
                max_length=32,
            ),
        ),
    ]
