24 lines
553 B
Python
24 lines
553 B
Python
# Generated by Django 5.2.6 on 2025-09-16 12:04
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("appointments", "0002_initial"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="waitinglist",
|
|
name="acceptable_days",
|
|
field=models.JSONField(
|
|
blank=True,
|
|
default=list,
|
|
help_text="Acceptable days of week (0=Monday, 6=Sunday)",
|
|
null=True,
|
|
),
|
|
),
|
|
]
|