removed old references to jsonfield
This commit is contained in:
parent
e2f506abf9
commit
44c6b6f594
@ -1,5 +1,4 @@
|
|||||||
from django.db import models
|
from django.db import models
|
||||||
import jsonfield
|
|
||||||
from qrtr_account.models import Account
|
from qrtr_account.models import Account
|
||||||
import importlib
|
import importlib
|
||||||
|
|
||||||
|
|||||||
@ -2,7 +2,6 @@ from django.db import models
|
|||||||
from user.models import User
|
from user.models import User
|
||||||
from django.contrib.contenttypes.fields import GenericForeignKey
|
from django.contrib.contenttypes.fields import GenericForeignKey
|
||||||
from django.contrib.contenttypes.models import ContentType
|
from django.contrib.contenttypes.models import ContentType
|
||||||
import jsonfield
|
|
||||||
|
|
||||||
|
|
||||||
class Account(models.Model):
|
class Account(models.Model):
|
||||||
@ -116,7 +115,7 @@ class Transaction(models.Model):
|
|||||||
datetime = models.DateTimeField()
|
datetime = models.DateTimeField()
|
||||||
Bank = models.ForeignKey(Bank, on_delete=models.CASCADE,
|
Bank = models.ForeignKey(Bank, on_delete=models.CASCADE,
|
||||||
related_name='transactions')
|
related_name='transactions')
|
||||||
details = jsonfield.JSONField()
|
details = models.JSONField()
|
||||||
Slice = models.ForeignKey(Slice, on_delete=models.SET_NULL, null=True)
|
Slice = models.ForeignKey(Slice, on_delete=models.SET_NULL, null=True)
|
||||||
|
|
||||||
@property
|
@property
|
||||||
|
|||||||
@ -16,7 +16,6 @@ Django==3.1.3
|
|||||||
django-allauth==0.42.0
|
django-allauth==0.42.0
|
||||||
django-cors-headers==3.4.0
|
django-cors-headers==3.4.0
|
||||||
django-genericrelationview==0.1.1
|
django-genericrelationview==0.1.1
|
||||||
django-jsonfield==1.4.0
|
|
||||||
django-rest-auth==0.9.5
|
django-rest-auth==0.9.5
|
||||||
django-rest-framework==0.1.0
|
django-rest-framework==0.1.0
|
||||||
django-smtp-ssl==1.0
|
django-smtp-ssl==1.0
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user