1
0
mirror of https://github.com/django/django.git synced 2025-11-07 07:15:35 +00:00

[5.1.x] Fixed #35731 -- Extended db_default docs.

This added a missing db_default reference in docs/topics/db/models.txt,
and added a reference to the DatabaseDefault object.

Backport of 35ab2e0182 from main.
This commit is contained in:
Yash
2024-10-16 14:38:31 +05:30
committed by Sarah Boyce
parent d9f37ac118
commit 630c9e1f9d
2 changed files with 14 additions and 0 deletions

View File

@@ -228,6 +228,15 @@ ones:
object. If callable it will be called every time a new object is
created.
:attr:`~Field.db_default`
The database-computed default value for the field. This can be a literal
value or a database function.
If both ``db_default`` and :attr:`Field.default` are set, ``default`` will
take precedence when creating instances in Python code. ``db_default`` will
still be set at the database level and will be used when inserting rows
outside of the ORM or when adding a new field in a migration.
:attr:`~Field.help_text`
Extra "help" text to be displayed with the form widget. It's useful for
documentation even if your field isn't used on a form.