I read I can use this:
SomeModel.update_all name: 'my name'
To make a batch transaction. Is it possible to make this change using the actual value in each row?
Example:
some_models
name
'asd'
'qwe'
A code that allows me to get:
some_models
name
'asd another'
'qwe another'
?