method

quoted_column_names

quoted_column_names(attributes = attributes_with_quotes)
private

No documentation available.

# File activerecord/lib/active_record/base.rb, line 1732
      def quoted_column_names(attributes = attributes_with_quotes)
        attributes.keys.collect do |column_name|
          self.class.connection.quote_column_name(column_name)
        end
      end