update table with ActiveRecord

How do i do an "update posts set `home`=1" with ActiveRecord?

sorry. a peek into the API gave me the solution.

Post.update_all(:home=>1)