mirror of
https://github.com/django/django.git
synced 2025-08-03 18:38:50 +00:00
Fixed #28161 -- Fixed return type of ArrayField(CITextField()).
Thanks Tim for the review.
This commit is contained in:
parent
f37467ec7a
commit
b91868507a
8 changed files with 40 additions and 15 deletions
|
@ -106,6 +106,7 @@ class CITestModel(PostgreSQLModel):
|
|||
name = CICharField(primary_key=True, max_length=255)
|
||||
email = CIEmailField()
|
||||
description = CITextField()
|
||||
array_field = ArrayField(CITextField(), null=True)
|
||||
|
||||
def __str__(self):
|
||||
return self.name
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue