19 lines
577 B
Python
19 lines
577 B
Python
# Generated by Django 5.2.7 on 2025-10-06 11:09
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('recruitment', '0017_alter_jobposting_hiring_agency'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='jobposting',
|
|
name='hiring_agency',
|
|
field=models.ManyToManyField(blank=True, help_text='External agency responsible for sourcing candidates for this role', related_name='jobs', to='recruitment.hiringagency', verbose_name='Hiring Agency'),
|
|
),
|
|
]
|