# Generated by Django 6.0 on 2026-02-03 14:05

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('masters', '0011_remove_tblcandidateresume_preferred_skills_and_more'),
    ]

    operations = [
        migrations.CreateModel(
            name='TblMatchedProfiles',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('resume_id', models.IntegerField()),
                ('job_id', models.IntegerField()),
                ('status', models.CharField(max_length=50)),
                ('match_score', models.FloatField()),
                ('primaryskill_score', models.FloatField(null=True)),
                ('secondaryskill_score', models.FloatField(null=True)),
                ('experience_score', models.BooleanField()),
                ('responsibilities_score', models.FloatField(null=True)),
                ('tech_framework_score', models.FloatField(null=True)),
                ('created_date', models.DateTimeField(auto_now_add=True)),
            ],
        ),
        migrations.AlterField(
            model_name='tbljobdescription',
            name='onsite_job',
            field=models.CharField(blank=True, max_length=500, null=True),
        ),
        migrations.CreateModel(
            name='TblJDResumeSeen',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('jd_id', models.IntegerField()),
                ('resume_id', models.IntegerField()),
                ('created_date', models.DateTimeField(auto_now_add=True)),
            ],
            options={
                'unique_together': {('jd_id', 'resume_id')},
            },
        ),
    ]
