method

quote_columns

quote_columns(quoter, hash)
private

No documentation available.

# 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