method
quoted_column_names
v2.0.3 -
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 2466
def quoted_column_names(attributes = attributes_with_quotes)
attributes.keys.collect do |column_name|
self.class.connection.quote_column_name(column_name)
end
end