I have list of comments in one array. Can I use update_all on array ?
comments = Comments.find(:all,:conditions => ["test is not null"])
comments.update_all(:test => nil)
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You cannot use
update_allwith arrays, only with scopes.findorall(in older version of Rails) return an array. Instead:On modern versions of Ruby/ActiveRecord, you can write: