# Generated by Django 6.0 on 2026-03-05 11:13

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('masters', '0021_remove_tblcandidateresume_public_id_and_more'),
    ]

    operations = [
        migrations.AddField(
            model_name='tblcandidateprofile',
            name='current_salary',
            field=models.CharField(blank=True, max_length=500, null=True),
        ),
        migrations.AddField(
            model_name='tblcandidateprofile',
            name='expected_salary',
            field=models.CharField(blank=True, max_length=500, null=True),
        ),
        migrations.AddField(
            model_name='tblcandidateprofile',
            name='visa_status',
            field=models.CharField(blank=True, max_length=500, null=True),
        ),
        migrations.AddField(
            model_name='tbljobdescription',
            name='jd_status_reason',
            field=models.TextField(blank=True, null=True),
        ),
        migrations.AddField(
            model_name='tbljobdescription',
            name='jd_status_reason_type',
            field=models.CharField(blank=True, choices=[('On Hold', 'On Hold'), ('Cancelled', 'Cancelled')], max_length=20, null=True),
        ),
        migrations.AddField(
            model_name='tblmatchedprofiles',
            name='l0_interview_summary',
            field=models.JSONField(blank=True, default=list, null=True),
        ),
        migrations.AddField(
            model_name='tblmatchedprofilescandidate',
            name='status',
            field=models.CharField(blank=True, max_length=20, null=True),
        ),
        migrations.AlterField(
            model_name='tblmatchedprofilescandidate',
            name='experience_score',
            field=models.BooleanField(blank=True, null=True),
        ),
        migrations.AlterField(
            model_name='tblmatchedprofilescandidate',
            name='overall_score',
            field=models.FloatField(blank=True, null=True),
        ),
        migrations.AlterField(
            model_name='tblmatchedprofilescandidate',
            name='primaryskill_score',
            field=models.FloatField(blank=True, null=True),
        ),
        migrations.AlterField(
            model_name='tblmatchedprofilescandidate',
            name='responsibilities_score',
            field=models.FloatField(blank=True, null=True),
        ),
        migrations.AlterField(
            model_name='tblmatchedprofilescandidate',
            name='tech_framework_score',
            field=models.FloatField(blank=True, null=True),
        ),
        migrations.AlterField(
            model_name='tblmatchedprofilescandidate',
            name='technicalskill_score',
            field=models.FloatField(blank=True, null=True),
        ),
    ]
