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