django-notifications/notifications/migrations/0010_alter_notification_data.py
2023-06-02 00:02:45 +00:00

17 lines
441 B
Python

# Generated by Django 4.2.1 on 2023-05-31 23:21
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("notifications", "0009_alter_notification_options_and_more"),
]
operations = [
migrations.AlterField(
model_name="notification",
name="data",
field=models.JSONField(blank=True, null=True, verbose_name="data"),
),
]