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 101
    def max_updated_column_timestamp
      if (timestamps = timestamp_attributes_for_update.map { |attr| self[attr] }.compact).present?
        timestamps.map { |ts| ts.to_time }.max
      end
    end
Register or log in to add new notes.