# Generated by Django 5.2 on 2025-04-21 13:31

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('blogs', '0010_blogpostpage_social_post_url'),
    ]

    operations = [
        migrations.AddField(
            model_name='blogpostpage',
            name='social_platform',
            field=models.CharField(blank=True, choices=[('twitter', 'Twitter/X'), ('linkedin', 'LinkedIn'), ('facebook', 'Facebook'), ('github', 'GitHub'), ('reddit', 'Reddit'), ('other', 'Other Platform')], default='twitter', help_text='Select the social media platform for the post URL', max_length=20),
        ),
        migrations.AlterField(
            model_name='blogpostpage',
            name='social_post_url',
            field=models.URLField(blank=True, help_text='URL to a social media post where readers can comment on this article'),
        ),
    ]
