bedrock/mozorg/migrations/0004_alter_leadershippage_leadership_sections.py [17:58]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ]

    operations = [
        migrations.AlterField(
            model_name="leadershippage",
            name="leadership_sections",
            field=wagtail.fields.StreamField(
                [
                    (
                        "section",
                        wagtail.blocks.StructBlock(
                            [
                                (
                                    "title",
                                    wagtail.blocks.CharBlock(
                                        blank=True,
                                        help_text="Title for the section of the page e.g. 'Mozilla Corporation' or 'Mozilla Foundation.",
                                        max_length=255,
                                        null=True,
                                    ),
                                ),
                                (
                                    "leadership_group",
                                    wagtail.blocks.ListBlock(
                                        wagtail.blocks.StructBlock(
                                            [
                                                (
                                                    "title",
                                                    wagtail.blocks.CharBlock(
                                                        char_max_length=255,
                                                        help_text="Leadership group title, e.g. 'Executive Steering Committee' or 'Senior Leadership'.",  # noqa E501
                                                        required=False,
                                                    ),
                                                ),
                                                (
                                                    "leaders",
                                                    wagtail.blocks.ListBlock(
                                                        wagtail.blocks.StructBlock(
                                                            [
                                                                (
                                                                    "name",
                                                                    wagtail.blocks.CharBlock(
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



bedrock/mozorg/migrations/0005_alter_leadershippage_leadership_sections.py [17:58]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ]

    operations = [
        migrations.AlterField(
            model_name="leadershippage",
            name="leadership_sections",
            field=wagtail.fields.StreamField(
                [
                    (
                        "section",
                        wagtail.blocks.StructBlock(
                            [
                                (
                                    "title",
                                    wagtail.blocks.CharBlock(
                                        blank=True,
                                        help_text="Title for the section of the page e.g. 'Mozilla Corporation' or 'Mozilla Foundation.",
                                        max_length=255,
                                        null=True,
                                    ),
                                ),
                                (
                                    "leadership_group",
                                    wagtail.blocks.ListBlock(
                                        wagtail.blocks.StructBlock(
                                            [
                                                (
                                                    "title",
                                                    wagtail.blocks.CharBlock(
                                                        char_max_length=255,
                                                        help_text="Leadership group title, e.g. 'Executive Steering Committee' or 'Senior Leadership'.",  # noqa: E501
                                                        required=False,
                                                    ),
                                                ),
                                                (
                                                    "leaders",
                                                    wagtail.blocks.ListBlock(
                                                        wagtail.blocks.StructBlock(
                                                            [
                                                                (
                                                                    "name",
                                                                    wagtail.blocks.CharBlock(
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



