# Generated by Django 4.2.19 on 2025-06-25 16:09

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('events', '0022_sectionimage'),
    ]

    operations = [
        migrations.AddField(
            model_name='callforproposal',
            name='image',
            field=models.ImageField(blank=True, help_text='Image to display on the CFP card', null=True, upload_to='cfp_images/'),
        ),
        migrations.AlterField(
            model_name='sectionimage',
            name='section',
            field=models.CharField(choices=[('join_community', 'Join Community Section')], help_text='The section where this image will be displayed', max_length=50, unique=True),
        ),
    ]
