Delete unnecessary line that was necessary before I changed the code and it became no longer necessary.

This commit is contained in:
Jon Leighton 2011-12-22 23:04:10 +00:00
parent 173eacadf1
commit 13a9efe62e

@ -177,7 +177,6 @@ def calculate(operation, column_name, options = {})
# Person.where(:confirmed => true).limit(5).pluck(:id)
#
def pluck(column_name)
column_name = column_name.to_s
klass.connection.select_all(select(column_name).arel).map! do |attributes|
klass.type_cast_attribute(attributes.keys.first, klass.initialize_attributes(attributes))
end