# Generated by Django 5.2.14 on 2026-07-08 18:25

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ("core", "0061_alter_notification_verb_and_more"),
    ]

    operations = [
        migrations.AddField(
            model_name="profilevisibility",
            name="show_experience",
            field=models.BooleanField(default=True),
        ),
        migrations.AddField(
            model_name="userprofile",
            name="experience",
            field=models.JSONField(
                blank=True,
                default=list,
                help_text="List of {id, organization, title, start_year, end_year, is_current, description} dicts. Repeatable entries edited via the profile page's popup add/edit UI.",
            ),
        ),
        migrations.AlterField(
            model_name="userprofile",
            name="qualifications",
            field=models.JSONField(
                blank=True,
                default=list,
                help_text="List of {id, institution, qualification, field_of_study, year} dicts. Repeatable entries edited via the profile page's popup add/edit UI — each dict carries a stable `id` (uuid4 hex) so entries can be individually updated or removed without touching the rest of the list.",
            ),
        ),
    ]
