instance method
clear_timestamp_attributes
Ruby on Rails 4.1.16
Since v3.2.22.5 PrivateSignature
clear_timestamp_attributes()
Clear attributes and changed_attributes
Source
# File activerecord/lib/active_record/timestamp.rb, line 112
def clear_timestamp_attributes
all_timestamp_attributes_in_model.each do |attribute_name|
self[attribute_name] = nil
changed_attributes.delete(attribute_name)
end
end
Defined in activerecord/lib/active_record/timestamp.rb line 112
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveRecord::Timestamp