method
touch_deferred_attributes
v5.0.0.1 -
Show latest stable
- Class:
ActiveRecord::TouchLater
touch_deferred_attributes()private
No documentation available.
# File activerecord/lib/active_record/touch_later.rb, line 42
def touch_deferred_attributes
if has_defer_touch_attrs? && persisted?
touch(*@_defer_touch_attrs, time: @_touch_time)
@_defer_touch_attrs, @_touch_time = nil, nil
end
end