# Generated by Django 4.2.27 on 2026-01-23 07:01

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ("guests", "0007_guest_extra_data"),
    ]

    operations = [
        migrations.AddField(
            model_name="guest",
            name="city_tax_exemption_notes",
            field=models.TextField(
                blank=True,
                help_text="Internal notes for audit or verification",
                null=True,
            ),
        ),
        migrations.AddField(
            model_name="guest",
            name="city_tax_exemption_reason",
            field=models.CharField(
                blank=True,
                help_text="Reason for exemption (Medical, Student, Resident, etc.)",
                max_length=50,
                null=True,
            ),
        ),
        migrations.AddField(
            model_name="guest",
            name="is_city_tax_exempt",
            field=models.BooleanField(
                default=False, help_text="If true, guest is fully exempt from city tax"
            ),
        ),
    ]
