# Generated by Django 5.0.2 on 2025-09-10 06:07

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('hr', '0002_alter_employee_address'),
    ]

    operations = [
        migrations.AddField(
            model_name='employee',
            name='employee_category',
            field=models.CharField(choices=[('management', 'Management'), ('senior_staff', 'Senior Staff'), ('junior_staff', 'Junior Staff'), ('support_staff', 'Support Staff'), ('temporary', 'Temporary')], default='junior_staff', max_length=20),
        ),
        migrations.AddField(
            model_name='employee',
            name='employment_status',
            field=models.CharField(choices=[('active', 'Active'), ('on_leave', 'On Leave'), ('suspended', 'Suspended'), ('terminated', 'Terminated')], default='active', max_length=20),
        ),
        migrations.AddField(
            model_name='employee',
            name='employment_type',
            field=models.CharField(choices=[('full_time', 'Full Time'), ('part_time', 'Part Time'), ('contract', 'Contract'), ('intern', 'Intern'), ('consultant', 'Consultant')], default='full_time', max_length=20),
        ),
    ]
