mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-05-26 21:14:02 +00:00
20 lines
446 B
Python
20 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,
|
||
|
|
),
|
||
|
|
]
|