Kaydet (Commit) a05d86a6 authored tarafından Tim Graham's avatar Tim Graham Kaydeden (comit) GitHub

Fixed #26918 -- Clarified source of pre/post_save update_fields argument.

üst 09d38746
...@@ -125,8 +125,8 @@ Arguments sent with this signal: ...@@ -125,8 +125,8 @@ Arguments sent with this signal:
The database alias being used. The database alias being used.
``update_fields`` ``update_fields``
The set of fields to update explicitly specified in the ``save()`` method. The set of fields to update as passed to :meth:`.Model.save`, or ``None``
``None`` if this argument was not used in the ``save()`` call. if ``update_fields`` wasn't passed to ``save()``.
``post_save`` ``post_save``
------------- -------------
...@@ -158,8 +158,8 @@ Arguments sent with this signal: ...@@ -158,8 +158,8 @@ Arguments sent with this signal:
The database alias being used. The database alias being used.
``update_fields`` ``update_fields``
The set of fields to update explicitly specified in the ``save()`` method. The set of fields to update as passed to :meth:`.Model.save`, or ``None``
``None`` if this argument was not used in the ``save()`` call. if ``update_fields`` wasn't passed to ``save()``.
``pre_delete`` ``pre_delete``
-------------- --------------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment