19 lines
481 B
Python
19 lines
481 B
Python
# Generated by Django 6.0 on 2025-12-16 09:52
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('recruitment', '0005_merge_0004_interviewquestion_0004_settings_name'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='interview',
|
|
name='join_url',
|
|
field=models.URLField(blank=True, max_length=2048, null=True, verbose_name='Meeting/Location URL'),
|
|
),
|
|
]
|