19 lines
472 B
Python
19 lines
472 B
Python
# Generated by Django 5.2.6 on 2025-11-13 13:29
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('recruitment', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='jobposting',
|
|
name='ai_parsed',
|
|
field=models.BooleanField(default=False, help_text='Whether the job posting has been parsed by AI', verbose_name='AI Parsed'),
|
|
),
|
|
]
|