mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-05-17 01:01:07 +00:00
17 lines
411 B
Python
17 lines
411 B
Python
# -*- coding: utf-8 -*-
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("notifications", "0002_auto_20150224_1134"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="notification",
|
|
name="data",
|
|
field=models.JSONField(null=True, blank=True),
|
|
preserve_default=True,
|
|
),
|
|
]
|