method
max_updated_column_timestamp
v7.2.3 -
Show latest stable
- Class:
ActiveRecord::Timestamp
max_updated_column_timestamp()private
No documentation available.
# File activerecord/lib/active_record/timestamp.rb, line 163
def max_updated_column_timestamp
timestamp_attributes_for_update_in_model
.filter_map { |attr| (v = self[attr]) && (v.is_a?(::Time) ? v : v.to_time) }
.max
end