summaryrefslogtreecommitdiff
path: root/docs/releases
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2025-11-17 13:43:47 +0100
committerGitHub <noreply@github.com>2025-11-17 13:43:47 +0100
commit1ce6e78dd4beed702f15fa0be798dd17a15d4ba8 (patch)
tree0078da5312fb69897bb6327040d51c3450d2fa3b /docs/releases
parent5c60763561c67924eff1069e1516b60a59d068d5 (diff)
Fixed #24920 -- Added support for DecimalField with no precision.
Thanks Lily for the review.
Diffstat (limited to 'docs/releases')
-rw-r--r--docs/releases/6.1.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/releases/6.1.txt b/docs/releases/6.1.txt
index 8c5594d5b6..425419529b 100644
--- a/docs/releases/6.1.txt
+++ b/docs/releases/6.1.txt
@@ -247,6 +247,11 @@ Models
top-level or nested JSON ``null`` values. See
:ref:`storing-and-querying-for-none` for usage examples and some caveats.
+* :attr:`DecimalField.max_digits <django.db.models.DecimalField.max_digits>`
+ and :attr:`DecimalField.decimal_places
+ <django.db.models.DecimalField.decimal_places>` are no longer required to be
+ set on Oracle, PostgreSQL, and SQLite.
+
Pagination
~~~~~~~~~~