From 5028a02352cb1fe3e64d63a614912ef694838862 Mon Sep 17 00:00:00 2001 From: Carlton Gibson Date: Tue, 2 Aug 2022 12:02:07 +0200 Subject: [PATCH] Doc'd TextField.db_collation as optional. Matches CharField.db_collation docs. Thanks to Paolo Melchiorre for the report. --- docs/ref/models/fields.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ref/models/fields.txt b/docs/ref/models/fields.txt index 384c5e50bf..ea18d468de 100644 --- a/docs/ref/models/fields.txt +++ b/docs/ref/models/fields.txt @@ -1343,7 +1343,7 @@ However it is not enforced at the model or database level. Use a .. attribute:: TextField.db_collation - The database collation name of the field. + Optional. The database collation name of the field. .. note::