Flowdock
method

quote_columns

Importance_0
v3.0.0 - Show latest stable - 0 notes - Class: ActiveRecord::Base
quote_columns(quoter, hash) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/base.rb, line 1809
      def quote_columns(quoter, hash)
        hash.inject({}) do |quoted, (name, value)|
          quoted[quoter.quote_column_name(name)] = value
          quoted
        end
      end
Register or log in to add new notes.