method
quoted_column_names
v1.0.0 -
Show latest stable
- Class:
ActiveRecord::Base
quoted_column_names(attributes = attributes_with_quotes)private
No documentation available.
# File activerecord/lib/active_record/base.rb, line 1732
def quoted_column_names(attributes = attributes_with_quotes)
attributes.keys.collect do |column_name|
self.class.connection.quote_column_name(column_name)
end
end