20 lines
645 B
Python
20 lines
645 B
Python
# Generated by Django 5.2.7 on 2025-11-23 09:22
|
|
|
|
import django.db.models.deletion
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('recruitment', '0003_jobposting_cv_zip_file_jobposting_zip_created'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='interviewschedule',
|
|
name='template_location',
|
|
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='schedule_templates', to='recruitment.interviewlocation', verbose_name='Location Template (Zoom/Onsite)'),
|
|
),
|
|
]
|