19 lines
577 B
Python
19 lines
577 B
Python
# Generated by Django 5.2.6 on 2025-10-02 14:32
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('recruitment', '0006_jobposting_alter_candidate_options_alter_job_options_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='jobposting',
|
|
name='status',
|
|
field=models.CharField(blank=True, choices=[('DRAFT', 'Draft'), ('ACTIVE', 'Active'), ('CLOSED', 'Closed'), ('ARCHIVED', 'Archived')], default='DRAFT', max_length=20, null=True),
|
|
),
|
|
]
|