# Generated by Django 4.2.19 on 2025-03-11 13:38

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('events', '0013_carouselimage'),
    ]

    operations = [
        migrations.AddField(
            model_name='event',
            name='stream_platform',
            field=models.CharField(blank=True, choices=[('youtube', 'YouTube'), ('facebook', 'Facebook')], help_text='Platform where the event will be streamed', max_length=10, null=True),
        ),
        migrations.AddField(
            model_name='event',
            name='stream_url',
            field=models.URLField(blank=True, help_text='YouTube or Facebook live stream URL. Will be shown when event is ongoing.', null=True),
        ),
    ]
