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

Backport of a46dfa87d0 from main
This commit is contained in:
Claude Paroz 2022-07-23 16:12:01 +02:00 committed by Mariusz Felisiak
parent 8a2e65c2e6
commit 1fd79033f7
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::