Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions user_guide_src/source/models/model.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1016,9 +1016,9 @@ beforeFind The name of the calling **method**, whether a **singleton** wa
- ``findAll()`` **limit** = the number of rows to find.
**offset** = the number of rows to skip during the search.
afterFind Same as **beforeFind** but including the resulting row(s) of data, or null if no result found.
beforeDelete **id** = primary key of row being passed to the ``delete()`` method.
beforeDelete **id** = an array of primary key rows being passed to the ``delete()`` method.
**purge** = boolean whether soft-delete rows should be hard deleted.
afterDelete **id** = primary key of row being passed to the ``delete()`` method.
afterDelete **id** = an array of primary key rows being passed to the ``delete()`` method.
**purge** = boolean whether soft-delete rows should be hard deleted.
**result** = the result of the ``delete()`` call on the Query Builder.
**data** = unused.
Expand Down