Flowdock
method

quoted_column_names

Importance_0
v1.2.6 - Show latest stable - 0 notes - Class: ActiveRecord::Base
quoted_column_names(attributes = attributes_with_quotes) 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 2132
      def quoted_column_names(attributes = attributes_with_quotes)
        attributes.keys.collect do |column_name|
          self.class.connection.quote_column_name(column_name)
        end
      end
Register or log in to add new notes.