From d8d254e559a6823873e0901c189c696d0761976c Mon Sep 17 00:00:00 2001 From: Christoph Buelter Date: Fri, 14 Nov 2025 09:34:21 +0100 Subject: [PATCH] Clarified consistency statement. See https://github.com/django/django/pull/20091#discussion_r2524727369 --- docs/releases/5.0.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/releases/5.0.txt b/docs/releases/5.0.txt index 310f6cb218..6248bb8ada 100644 --- a/docs/releases/5.0.txt +++ b/docs/releases/5.0.txt @@ -530,9 +530,9 @@ Should become:: Running the :djadmin:`makemigrations` command will generate a migration containing a no-op ``AlterField`` operation. By default, new -``UUIDField`` instances will use the ``UUID`` column type: To ensure -consistency with existing fields, use ``Char32UUIDField`` instead for -new fields that should have the same column type. +``UUIDField`` instances will use the ``UUID`` column type. If a +``CHAR(32)`` column is needed, for example if you want to ensure +consistency with existing columns, use a ``Char32UUIDField``. ----