mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-04-02 13:10:23 +00:00
19 lines
446 B
Python
19 lines
446 B
Python
# -*- coding: utf-8 -*-
|
|
from django.db import models, migrations
|
|
import jsonfield.fields
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('notifications', '0002_auto_20150224_1134'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='notification',
|
|
name='data',
|
|
field=jsonfield.fields.JSONField(null=True, blank=True),
|
|
preserve_default=True,
|
|
),
|
|
]
|