mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-05-16 17:01:05 +00:00
17 lines
441 B
Python
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"),
|
|
),
|
|
]
|