# Generated by Django 5.2 on 2025-04-21 10:52

import wagtail.fields
from django.db import migrations


class Migration(migrations.Migration):

    dependencies = [
        ('about', '0002_remove_aboutpage_timeline_aboutpage_bio_details_and_more'),
    ]

    operations = [
        migrations.AlterField(
            model_name='aboutpage',
            name='education',
            field=wagtail.fields.StreamField([('education', 3)], blank=True, block_lookup={0: ('wagtail.blocks.CharBlock', (), {'required': True}), 1: ('wagtail.blocks.CharBlock', (), {'help_text': 'e.g. 2011-2015', 'required': True}), 2: ('wagtail.blocks.RichTextBlock', (), {'features': ['bold', 'italic', 'ol', 'ul', 'link'], 'required': True}), 3: ('wagtail.blocks.StructBlock', [[('degree', 0), ('institution', 0), ('period', 1), ('description', 2)]], {})}),
        ),
        migrations.AlterField(
            model_name='aboutpage',
            name='work_experience',
            field=wagtail.fields.StreamField([('experience', 3)], blank=True, block_lookup={0: ('wagtail.blocks.CharBlock', (), {'required': True}), 1: ('wagtail.blocks.CharBlock', (), {'help_text': 'e.g. 2022 - Present', 'required': True}), 2: ('wagtail.blocks.RichTextBlock', (), {'features': ['bold', 'italic', 'ol', 'ul', 'link'], 'required': True}), 3: ('wagtail.blocks.StructBlock', [[('role', 0), ('company', 0), ('period', 1), ('description', 2)]], {})}),
        ),
    ]
