method
quote_columns
quote_columns(quoter, hash)
private
Hide source
# File activerecord/lib/active_record/base.rb, line 3160 def quote_columns(quoter, hash) hash.inject({}) do |quoted, (name, value)| quoted[quoter.quote_column_name(name)] = value quoted end end

