# Generated by Django 5.2.13 on 2026-05-02 16:29

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ("core", "0035_slice5_scorm_error"),
    ]

    operations = [
        migrations.AddField(
            model_name="notification",
            name="data",
            field=models.JSONField(
                blank=True,
                default=dict,
                help_text="Verb-specific render context for in-app surfaces (inbox / dropdown). Distinct from email_context — email_context is render-time and not persisted. Keys are convention-driven per verb (see _verb_*.html partials).",
            ),
        ),
    ]
