19 lines
491 B
Python
19 lines
491 B
Python
# Generated by Django 5.2.8 on 2025-12-03 15:28
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('meetings', '0010_remove_appointmentrequest_is_admin_join'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='appointmentrequest',
|
|
name='selected_slots',
|
|
field=models.JSONField(default=list, help_text='Original selected slots with day and time slot pairs'),
|
|
),
|
|
]
|