Flowdock
method

max_updated_column_timestamp

Importance_0
max_updated_column_timestamp(timestamp_names = timestamp_attributes_for_update_in_model) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/timestamp.rb, line 137
    def max_updated_column_timestamp(timestamp_names = timestamp_attributes_for_update_in_model)
      timestamp_names
        .map { |attr| self[attr] }
        .compact
        .map(&:to_time)
        .max
    end
Register or log in to add new notes.