1
0
mirror of https://github.com/django/django.git synced 2025-04-12 03:22:21 +00:00

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

Backport of a46dfa87d0ba690125be98f7f1b77062a1794fdc 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

@ -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::