Ruby on Rails Saturday, August 6, 2016

I wonder what is the best way to delete all the records of the association on a specified condition.
For example, you have User model that has many Post(s). How would keep all the recent User's Posts and delete all the last Posts when a Users have more than 25 ?

There is a solution like that:

def self.delete_old_posts
    old_posts
= []
    users
= includes(:post)
    users
.each do |user|
      old_posts
=+ user.posts.offset(25) unless user.posts.empty?
   
end


    old_posts
.delete_all
end

Any other ideas ? Thank you.

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/e72d40de-1f2b-494c-8e47-ff172c4cd817%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment