1
0
mirror of https://github.com/django/django.git synced 2025-06-02 01:59:11 +00:00

Fixed aggregation tests crash on databases that don't support JSONFields.

This commit is contained in:
sag​e 2025-04-27 08:03:35 +01:00 committed by GitHub
parent 7b394b9988
commit fb427e467c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -47,3 +47,6 @@ class Store(models.Model):
class Employee(models.Model):
work_day_preferences = models.JSONField()
class Meta:
required_db_features = {"supports_json_field"}