# Generated by Django 6.0.6 on 2026-07-17 08:50

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('candidates', '0009_emailoptout'),
    ]

    operations = [
        migrations.AddField(
            model_name='candidate',
            name='employment_type',
            field=models.CharField(blank=True, choices=[('Full Time', 'Full Time'), ('Part Time', 'Part Time')], db_index=True, max_length=20, null=True),
        ),
    ]
