summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorRobert Coup <robert@coup.net.nz>2019-01-24 18:02:37 +0000
committerTim Graham <timograham@gmail.com>2019-01-31 13:13:53 -0500
commita8b03bea180e0660c0e159f3e7cf6192b512925f (patch)
tree39b414606a5cadacb80cba7af109b9b119b68ccb /docs/ref
parent290d8471bba35980f3e228f9c171afc40f2550fa (diff)
Refs #28161 -- Doc'd INSTALLED_APPS requirement for ArrayField(CIText).
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/contrib/postgres/fields.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/ref/contrib/postgres/fields.txt b/docs/ref/contrib/postgres/fields.txt
index 11fcec664f..1163e9767a 100644
--- a/docs/ref/contrib/postgres/fields.txt
+++ b/docs/ref/contrib/postgres/fields.txt
@@ -265,6 +265,11 @@ transform do not change. For example::
:ref:`setup the citext extension <create-postgresql-extensions>` in
PostgreSQL before the first ``CreateModel`` migration operation.
+ If you're using an :class:`~django.contrib.postgres.fields.ArrayField`
+ of ``CIText`` fields, you must add ``'django.contrib.postgres'`` in your
+ :setting:`INSTALLED_APPS`, otherwise field values will appear as strings
+ like ``'{thoughts,django}'``.
+
Several fields that use the mixin are provided:
.. class:: CICharField(**options)