Flowdock
method

max_updated_column_timestamp

Importance_0
max_updated_column_timestamp() 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 149
    def max_updated_column_timestamp
      timestamp_attributes_for_update_in_model
        .filter_map { |attr| self[attr]&.to_time }
        .max
    end
Register or log in to add new notes.