19 lines
562 B
Python
19 lines
562 B
Python
# Generated by Django 5.2.7 on 2026-01-19 21:37
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('recruitment', '0002_add_cancellation_fields_to_agency_job_assignment'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='agencyjobassignment',
|
|
name='status',
|
|
field=models.CharField(choices=[('ACTIVE', 'Active'), ('COMPLETED', 'Completed'), ('CANCELLED', 'Cancelled')], default='ACTIVE', max_length=20, verbose_name='Status'),
|
|
),
|
|
]
|