diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2025-11-17 13:43:47 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-17 13:43:47 +0100 |
| commit | 1ce6e78dd4beed702f15fa0be798dd17a15d4ba8 (patch) | |
| tree | 0078da5312fb69897bb6327040d51c3450d2fa3b /docs/releases | |
| parent | 5c60763561c67924eff1069e1516b60a59d068d5 (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.txt | 5 |
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 ~~~~~~~~~~ |
