diff options
author | Avneet Singh Malhotra <avneet@vinsol.com> | 2017-11-13 15:48:25 +0530 |
---|---|---|
committer | Avneet Singh Malhotra <avneet@vinsol.com> | 2017-11-13 15:48:25 +0530 |
commit | 17ea5bf80809d11c337a30e4059cab8d8eb00d01 (patch) | |
tree | 37f17595f9ded8cc1b0d5ceb902146837f25c8df /guides/source | |
parent | a45f234b028fd4dda5338e5073a3bf2b8bf2c6fd (diff) | |
download | rails-17ea5bf80809d11c337a30e4059cab8d8eb00d01.tar.gz rails-17ea5bf80809d11c337a30e4059cab8d8eb00d01.tar.bz2 rails-17ea5bf80809d11c337a30e4059cab8d8eb00d01.zip |
Move touch method from Skipping Callbacks section to Running Callbacks section [ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/active_record_callbacks.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/active_record_callbacks.md b/guides/source/active_record_callbacks.md index 53417f012e..630dafe632 100644 --- a/guides/source/active_record_callbacks.md +++ b/guides/source/active_record_callbacks.md @@ -213,6 +213,7 @@ The following methods trigger callbacks: * `save!` * `save(validate: false)` * `toggle!` +* `touch` * `update_attribute` * `update` * `update!` @@ -245,7 +246,6 @@ Just as with validations, it is also possible to skip callbacks by using the fol * `increment` * `increment_counter` * `toggle` -* `touch` * `update_column` * `update_columns` * `update_all` |