method

quote_columns

quote_columns(quoter, hash)
private

No documentation available.

# File activerecord/lib/active_record/base.rb, line 1845
      def quote_columns(quoter, hash)
        Hash[hash.map { |name, value| [quoter.quote_column_name(name), value] }]
      end