# Generated by Django 4.2.20 on 2025-07-18 11:19

import core.model_utils
from django.db import migrations, models


class Migration(migrations.Migration):
    dependencies = [
        ("comms", "0009_auto_20240415_1302"),
    ]

    operations = [
        migrations.AddField(
            model_name="historicalnewsitem",
            name="body_cy",
            field=core.model_utils.JanewayBleachField(null=True),
        ),
        migrations.AddField(
            model_name="historicalnewsitem",
            name="body_de",
            field=core.model_utils.JanewayBleachField(null=True),
        ),
        migrations.AddField(
            model_name="historicalnewsitem",
            name="body_en",
            field=core.model_utils.JanewayBleachField(null=True),
        ),
        migrations.AddField(
            model_name="historicalnewsitem",
            name="body_en_us",
            field=core.model_utils.JanewayBleachField(null=True),
        ),
        migrations.AddField(
            model_name="historicalnewsitem",
            name="body_es",
            field=core.model_utils.JanewayBleachField(null=True),
        ),
        migrations.AddField(
            model_name="historicalnewsitem",
            name="body_fr",
            field=core.model_utils.JanewayBleachField(null=True),
        ),
        migrations.AddField(
            model_name="historicalnewsitem",
            name="body_nl",
            field=core.model_utils.JanewayBleachField(null=True),
        ),
        migrations.AddField(
            model_name="historicalnewsitem",
            name="custom_byline_cy",
            field=models.CharField(
                blank=True,
                help_text="If you want a custom byline add it here. This will overwrite the display of the user who created the news item with whatever text is added here.",
                max_length=255,
                null=True,
            ),
        ),
        migrations.AddField(
            model_name="historicalnewsitem",
            name="custom_byline_de",
            field=models.CharField(
                blank=True,
                help_text="If you want a custom byline add it here. This will overwrite the display of the user who created the news item with whatever text is added here.",
                max_length=255,
                null=True,
            ),
        ),
        migrations.AddField(
            model_name="historicalnewsitem",
            name="custom_byline_en",
            field=models.CharField(
                blank=True,
                help_text="If you want a custom byline add it here. This will overwrite the display of the user who created the news item with whatever text is added here.",
                max_length=255,
                null=True,
            ),
        ),
        migrations.AddField(
            model_name="historicalnewsitem",
            name="custom_byline_en_us",
            field=models.CharField(
                blank=True,
                help_text="If you want a custom byline add it here. This will overwrite the display of the user who created the news item with whatever text is added here.",
                max_length=255,
                null=True,
            ),
        ),
        migrations.AddField(
            model_name="historicalnewsitem",
            name="custom_byline_es",
            field=models.CharField(
                blank=True,
                help_text="If you want a custom byline add it here. This will overwrite the display of the user who created the news item with whatever text is added here.",
                max_length=255,
                null=True,
            ),
        ),
        migrations.AddField(
            model_name="historicalnewsitem",
            name="custom_byline_fr",
            field=models.CharField(
                blank=True,
                help_text="If you want a custom byline add it here. This will overwrite the display of the user who created the news item with whatever text is added here.",
                max_length=255,
                null=True,
            ),
        ),
        migrations.AddField(
            model_name="historicalnewsitem",
            name="custom_byline_nl",
            field=models.CharField(
                blank=True,
                help_text="If you want a custom byline add it here. This will overwrite the display of the user who created the news item with whatever text is added here.",
                max_length=255,
                null=True,
            ),
        ),
        migrations.AddField(
            model_name="historicalnewsitem",
            name="title_cy",
            field=core.model_utils.JanewayBleachCharField(null=True),
        ),
        migrations.AddField(
            model_name="historicalnewsitem",
            name="title_de",
            field=core.model_utils.JanewayBleachCharField(null=True),
        ),
        migrations.AddField(
            model_name="historicalnewsitem",
            name="title_en",
            field=core.model_utils.JanewayBleachCharField(null=True),
        ),
        migrations.AddField(
            model_name="historicalnewsitem",
            name="title_en_us",
            field=core.model_utils.JanewayBleachCharField(null=True),
        ),
        migrations.AddField(
            model_name="historicalnewsitem",
            name="title_es",
            field=core.model_utils.JanewayBleachCharField(null=True),
        ),
        migrations.AddField(
            model_name="historicalnewsitem",
            name="title_fr",
            field=core.model_utils.JanewayBleachCharField(null=True),
        ),
        migrations.AddField(
            model_name="historicalnewsitem",
            name="title_nl",
            field=core.model_utils.JanewayBleachCharField(null=True),
        ),
        migrations.AddField(
            model_name="newsitem",
            name="body_cy",
            field=core.model_utils.JanewayBleachField(null=True),
        ),
        migrations.AddField(
            model_name="newsitem",
            name="body_de",
            field=core.model_utils.JanewayBleachField(null=True),
        ),
        migrations.AddField(
            model_name="newsitem",
            name="body_en",
            field=core.model_utils.JanewayBleachField(null=True),
        ),
        migrations.AddField(
            model_name="newsitem",
            name="body_en_us",
            field=core.model_utils.JanewayBleachField(null=True),
        ),
        migrations.AddField(
            model_name="newsitem",
            name="body_es",
            field=core.model_utils.JanewayBleachField(null=True),
        ),
        migrations.AddField(
            model_name="newsitem",
            name="body_fr",
            field=core.model_utils.JanewayBleachField(null=True),
        ),
        migrations.AddField(
            model_name="newsitem",
            name="body_nl",
            field=core.model_utils.JanewayBleachField(null=True),
        ),
        migrations.AddField(
            model_name="newsitem",
            name="custom_byline_cy",
            field=models.CharField(
                blank=True,
                help_text="If you want a custom byline add it here. This will overwrite the display of the user who created the news item with whatever text is added here.",
                max_length=255,
                null=True,
            ),
        ),
        migrations.AddField(
            model_name="newsitem",
            name="custom_byline_de",
            field=models.CharField(
                blank=True,
                help_text="If you want a custom byline add it here. This will overwrite the display of the user who created the news item with whatever text is added here.",
                max_length=255,
                null=True,
            ),
        ),
        migrations.AddField(
            model_name="newsitem",
            name="custom_byline_en",
            field=models.CharField(
                blank=True,
                help_text="If you want a custom byline add it here. This will overwrite the display of the user who created the news item with whatever text is added here.",
                max_length=255,
                null=True,
            ),
        ),
        migrations.AddField(
            model_name="newsitem",
            name="custom_byline_en_us",
            field=models.CharField(
                blank=True,
                help_text="If you want a custom byline add it here. This will overwrite the display of the user who created the news item with whatever text is added here.",
                max_length=255,
                null=True,
            ),
        ),
        migrations.AddField(
            model_name="newsitem",
            name="custom_byline_es",
            field=models.CharField(
                blank=True,
                help_text="If you want a custom byline add it here. This will overwrite the display of the user who created the news item with whatever text is added here.",
                max_length=255,
                null=True,
            ),
        ),
        migrations.AddField(
            model_name="newsitem",
            name="custom_byline_fr",
            field=models.CharField(
                blank=True,
                help_text="If you want a custom byline add it here. This will overwrite the display of the user who created the news item with whatever text is added here.",
                max_length=255,
                null=True,
            ),
        ),
        migrations.AddField(
            model_name="newsitem",
            name="custom_byline_nl",
            field=models.CharField(
                blank=True,
                help_text="If you want a custom byline add it here. This will overwrite the display of the user who created the news item with whatever text is added here.",
                max_length=255,
                null=True,
            ),
        ),
        migrations.AddField(
            model_name="newsitem",
            name="title_cy",
            field=core.model_utils.JanewayBleachCharField(null=True),
        ),
        migrations.AddField(
            model_name="newsitem",
            name="title_de",
            field=core.model_utils.JanewayBleachCharField(null=True),
        ),
        migrations.AddField(
            model_name="newsitem",
            name="title_en",
            field=core.model_utils.JanewayBleachCharField(null=True),
        ),
        migrations.AddField(
            model_name="newsitem",
            name="title_en_us",
            field=core.model_utils.JanewayBleachCharField(null=True),
        ),
        migrations.AddField(
            model_name="newsitem",
            name="title_es",
            field=core.model_utils.JanewayBleachCharField(null=True),
        ),
        migrations.AddField(
            model_name="newsitem",
            name="title_fr",
            field=core.model_utils.JanewayBleachCharField(null=True),
        ),
        migrations.AddField(
            model_name="newsitem",
            name="title_nl",
            field=core.model_utils.JanewayBleachCharField(null=True),
        ),
    ]
