# Generated by Django 6.0.6 on 2026-08-01 12:09

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('candidates', '0015_widen_preferred_location'),
    ]

    operations = [
        migrations.AlterField(
            model_name='candidate',
            name='source',
            field=models.CharField(choices=[('SELF', 'Self Portal'), ('LINKEDIN', 'LinkedIn'), ('NAUKRI', 'Naukri'), ('UPLOAD', 'CV Upload'), ('REFERRAL', 'Referral'), ('WHATSAPP', 'WhatsApp'), ('SMS', 'SMS'), ('TELEGRAM', 'Telegram'), ('EMAIL', 'Email'), ('DIRECT', 'Direct'), ('OTHER', 'Other')], db_index=True, default='OTHER', help_text='Where this candidate came from (self/linkedin/naukri/upload/referral/other).', max_length=20),
        ),
    ]
