diff options
| author | Nilesh Kumar Pahari <nileshpahari@protonmail.com> | 2025-12-18 16:21:50 +0530 |
|---|---|---|
| committer | Jacob Walls <jacobtylerwalls@gmail.com> | 2025-12-22 09:41:41 -0500 |
| commit | 6025eab3c509b4de922117e16866bbfe0ee99aa6 (patch) | |
| tree | d5f542be6eb02a9b12ab7fb3db93dcf54aa411de /docs/ref/models | |
| parent | afaa527c437f95ab6f8860840d83480d4d15b099 (diff) | |
Fixed #36806 -- Added system check for null kwarg in GeneratedField.
The null argument has no effect on GeneratedField since the nullability
of the column depends on the database and expression used.
Diffstat (limited to 'docs/ref/models')
| -rw-r--r-- | docs/ref/models/fields.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/ref/models/fields.txt b/docs/ref/models/fields.txt index a87d7261a7..fe4d764ab3 100644 --- a/docs/ref/models/fields.txt +++ b/docs/ref/models/fields.txt @@ -1377,6 +1377,9 @@ materialized view. backends that support it (SQLite, PostgreSQL, and Oracle) and marked as deferred otherwise. +:attr:`~Field.null` has no effect on ``GeneratedField`` since whether the +column is nullable depends on the database and expression used. + ``GenericIPAddressField`` ------------------------- |
