from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ("core", "0003_customuser_access_permissions"),
    ]

    operations = [
        migrations.AddField(
            model_name="userprofile",
            name="degree_level",
            field=models.CharField(
                blank=True,
                choices=[
                    ("undergraduate", "Undergraduate"),
                    ("masters", "Master's"),
                    ("phd", "PhD / Doctorate"),
                    ("other", "Other"),
                ],
                help_text="Highest relevant degree (used for grant eligibility rules).",
                max_length=32,
            ),
        ),
    ]
