removed old references to jsonfield

This commit is contained in:
DJ Gillespie 2020-11-25 16:44:35 -07:00
parent e2f506abf9
commit 44c6b6f594
3 changed files with 1 additions and 4 deletions

View File

@ -1,5 +1,4 @@
from django.db import models
import jsonfield
from qrtr_account.models import Account
import importlib

View File

@ -2,7 +2,6 @@ from django.db import models
from user.models import User
from django.contrib.contenttypes.fields import GenericForeignKey
from django.contrib.contenttypes.models import ContentType
import jsonfield
class Account(models.Model):
@ -116,7 +115,7 @@ class Transaction(models.Model):
datetime = models.DateTimeField()
Bank = models.ForeignKey(Bank, on_delete=models.CASCADE,
related_name='transactions')
details = jsonfield.JSONField()
details = models.JSONField()
Slice = models.ForeignKey(Slice, on_delete=models.SET_NULL, null=True)
@property

View File

@ -16,7 +16,6 @@ Django==3.1.3
django-allauth==0.42.0
django-cors-headers==3.4.0
django-genericrelationview==0.1.1
django-jsonfield==1.4.0
django-rest-auth==0.9.5
django-rest-framework==0.1.0
django-smtp-ssl==1.0