mirror of
https://github.com/Hopiu/django.git
synced 2026-04-30 11:44:45 +00:00
Refs #32096 -- Made JSONField check respect Meta.required_db_vendor.
Thanks Simon Charette for the implementation idea.
This commit is contained in:
parent
a492ccf0bc
commit
1fb97fb965
1 changed files with 5 additions and 0 deletions
|
|
@ -45,6 +45,11 @@ class JSONField(CheckFieldDefaultMixin, Field):
|
|||
if not router.allow_migrate_model(db, self.model):
|
||||
continue
|
||||
connection = connections[db]
|
||||
if (
|
||||
self.model._meta.required_db_vendor and
|
||||
self.model._meta.required_db_vendor != connection.vendor
|
||||
):
|
||||
continue
|
||||
if not (
|
||||
'supports_json_field' in self.model._meta.required_db_features or
|
||||
connection.features.supports_json_field
|
||||
|
|
|
|||
Loading…
Reference in a new issue