django-notifications/notifications/migrations/0003_notification_data.py
Hameed Gifford 95c6a48108
Test python 3.8 and Django 3.0
Aligns the doc specs to match tested versions
2020-01-19 01:18:25 -05:00

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,
),
]