I created an array using this statement..
users_who_promoted = @organization.card_signups.select {|c| c.credit_status == true }
but when I do this :
users_who_promoted.update_all("credit_status = false")
I get a big error :
NoMethodError: undefined method `update_all' for #<Array:0x32377bc>
from (irb):25
Why is this?