Skip to content

Commit

Permalink
Removed jsonfield dep | this makes the package compatible with postgr…
Browse files Browse the repository at this point in the history
…es only
  • Loading branch information
snyaggarwal committed Mar 3, 2020
1 parent ac41f87 commit b10c0ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions notifications/migrations/0003_notification_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from __future__ import unicode_literals

from django.db import models, migrations
import jsonfield.fields
from django.contrib.postgres.fields import JSONField


class Migration(migrations.Migration):
Expand All @@ -15,7 +15,7 @@ class Migration(migrations.Migration):
migrations.AddField(
model_name='notification',
name='data',
field=jsonfield.fields.JSONField(null=True, blank=True),
field=JSONField(null=True, blank=True),
preserve_default=True,
),
]

0 comments on commit b10c0ae

Please sign in to comment.