# Generated by Django 4.2.2 on 2023-06-29 10:50

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('usermanagement', '0011_alter_userprofile_profile_picture'),
    ]

    operations = [
        migrations.AlterField(
            model_name='userprofile',
            name='job_role',
            field=models.CharField(choices=[('STUDENT COUNSELLOR', 'STUDENT_COUNSELLOR'), ('MANAGER', 'MANAGER'), ('DIRECTOR', 'DIRECTOR'), ('SYSTEM ADMINISTRATOR', 'SYSTEM_ADMINISTRATOR')], max_length=100),
        ),
        migrations.DeleteModel(
            name='JobRole',
        ),
    ]
