mirror of
https://github.com/django/django.git
synced 2025-08-01 01:22:36 +00:00
Fixed #33114 -- Defined default output_field of StringAgg.
Thanks Simon Charette for the review.
This commit is contained in:
parent
8036b53de6
commit
ca58378390
4 changed files with 21 additions and 2 deletions
|
@ -160,6 +160,7 @@ class AggregateTestModel(PostgreSQLModel):
|
|||
To test postgres-specific general aggregation functions
|
||||
"""
|
||||
char_field = models.CharField(max_length=30, blank=True)
|
||||
text_field = models.TextField(blank=True)
|
||||
integer_field = models.IntegerField(null=True)
|
||||
boolean_field = models.BooleanField(null=True)
|
||||
json_field = models.JSONField(null=True)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue