diff options
Diffstat (limited to 'tests/postgres_tests/models.py')
| -rw-r--r-- | tests/postgres_tests/models.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/postgres_tests/models.py b/tests/postgres_tests/models.py index d5865818e7..cd1646a3e6 100644 --- a/tests/postgres_tests/models.py +++ b/tests/postgres_tests/models.py @@ -67,6 +67,9 @@ class OtherTypesArrayModel(PostgreSQLModel): uuids = ArrayField(models.UUIDField()) decimals = ArrayField(models.DecimalField(max_digits=5, decimal_places=2)) tags = ArrayField(TagField(), blank=True, null=True) + json = ArrayField(JSONField(default=dict), default=list) + int_ranges = ArrayField(IntegerRangeField(), blank=True, null=True) + bigint_ranges = ArrayField(BigIntegerRangeField(), blank=True, null=True) class HStoreModel(PostgreSQLModel): |
