blob: 760b5d8398d1a397b61661093d2791b5aa9ae8f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
from django.db.models import JSONField as BuiltinJSONField
__all__ = ["JSONField"]
class JSONField(BuiltinJSONField):
system_check_removed_details = {
"msg": (
"django.contrib.postgres.fields.JSONField is removed except for "
"support in historical migrations."
),
"hint": "Use django.db.models.JSONField instead.",
"id": "fields.E904",
}
|