I need to update attributes but only for rows with the specific conditions like
["recipient_id = ? and inbox_id = ? and status='unread'", current_user.id, @inbox.id]
How do I do it?
|
I need to update attributes but only for rows with the specific conditions like
How do I do it?
| |||
|
feedback
|
|
It depends on if you want to do a bulk SQL update, or do an update on each model that also calls validation and the normal callback chain.
If you want to do the SQL update:
Make sure to use the array form of conditions to ensure you correctly escape your SQL. | |||
|
feedback
|
| |||
|
feedback
|