19 lines
562 B
Python
19 lines
562 B
Python
# Generated by Django 5.2.6 on 2025-10-11 14:47
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('recruitment', '0003_candidate_is_resume_parsed_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='candidate',
|
|
name='applicant_status',
|
|
field=models.CharField(blank=True, choices=[('Applicant', 'Applicant'), ('Candidate', 'Candidate')], default='Applicant', max_length=100, null=True, verbose_name='Applicant Status'),
|
|
),
|
|
]
|