method
record_timestamp_columns
rails latest stable - Class:
ActiveRecord::Associations::HasAndBelongsToManyAssociation
record_timestamp_columns(record)private
No documentation available.
# File activerecord/lib/active_record/associations/has_and_belongs_to_many_association.rb, line 134
def record_timestamp_columns(record)
if record.record_timestamps
record.send(:all_timestamp_attributes).map { |x| x.to_s }
else
[]
end
end