mirror of
https://github.com/django/django.git
synced 2025-10-17 13:58:24 +00:00
This commit is contained in:
parent
69eb70456b
commit
3af695eda2
5 changed files with 23 additions and 0 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue