# Generated by Django 6.0.6 on 2026-07-09 14:51

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('pipeline', '0006_rankparameter'),
    ]

    operations = [
        migrations.AddField(
            model_name='jobapplication',
            name='round1_outcome',
            field=models.CharField(blank=True, choices=[('SCREENED_IN', 'Screened-In'), ('SCREENED_OUT', 'Screened-Out'), ('CALL_LATER', 'Call Me Later'), ('NOT_INTERESTED', 'Not Interested'), ('NO_RESPONSE', 'No Response'), ('DEALBREAKER', 'Dealbreaker')], default='', max_length=20),
        ),
        migrations.AddField(
            model_name='jobapplication',
            name='screening_answers',
            field=models.JSONField(blank=True, default=list),
        ),
    ]
