# Generated by Django 5.2.4 on 2025-12-15 13:32

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        (
            "appointments",
            "0004_appointment_appointment_phone_appointment_bot_type_and_more",
        ),
    ]

    operations = [
        migrations.AddField(
            model_name="appointment",
            name="booking_type",
            field=models.PositiveSmallIntegerField(
                blank=True,
                choices=[(1, "Oil Change"), (2, "Dealership Visit")],
                db_index=True,
                help_text="Type of appointment booking",
                null=True,
            ),
        ),
    ]
