# Generated by Django 6.0.5 on 2026-05-31 18:51

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('guest', '0002_invite'),
    ]

    operations = [
        migrations.AddField(
            model_name='rsvp',
            name='which_event',
            field=models.CharField(blank=True, choices=[('night_of_tribute', 'Night of Tribute (June 11)'), ('thanksgiving', 'Thanksgiving Service (June 12)'), ('both', 'Both Gatherings')], default='', help_text='Which gathering the attendee will attend', max_length=20),
        ),
    ]
