I want to execute an update_all query to update a datetime column adding 1 day to the current value of this column on all rows.
I could achieve that using .each and .update, but it would be more efficient to perform in a single query.
Is it possible to achieve that using Rails and PostgreSQL?