From a8b03bea180e0660c0e159f3e7cf6192b512925f Mon Sep 17 00:00:00 2001 From: Robert Coup Date: Thu, 24 Jan 2019 18:02:37 +0000 Subject: [PATCH] Refs #28161 -- Doc'd INSTALLED_APPS requirement for ArrayField(CIText). --- docs/ref/contrib/postgres/fields.txt | 5 +++++ 1 file changed, 5 insertions(+) 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 ` 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)