# Generated by Django 4.2.2 on 2025-06-29 08:40

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('usermanagement', '0017_userprofile_reference_id_alter_userprofile_job_role'),
    ]

    operations = [
        migrations.AlterField(
            model_name='userprofile',
            name='job_role',
            field=models.CharField(choices=[('OTHER', 'OTHER'), ('DOCTOR', 'DOCTOR'), ('STUDENT_COUNSELLOR', 'STUDENT_COUNSELLOR')], max_length=100),
        ),
    ]
