Refs #25756 -- Doc'd inability to use file fields with PostgreSQL ArrayField.

This commit is contained in:
Claude Paroz 2022-07-23 16:12:01 +02:00 committed by GitHub
parent 0afb65e635
commit a46dfa87d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -47,7 +47,9 @@ may be a good choice for the :ref:`range fields <range-fields>` and
with the exception of those handling relational data
(:class:`~django.db.models.ForeignKey`,
:class:`~django.db.models.OneToOneField` and
:class:`~django.db.models.ManyToManyField`).
:class:`~django.db.models.ManyToManyField`) and file fields (
:class:`~django.db.models.FileField` and
:class:`~django.db.models.ImageField`).
It is possible to nest array fields - you can specify an instance of
``ArrayField`` as the ``base_field``. For example::