Is there a new way to call a method similar to "update_without_callbacks" on an "after_save"?
I need to calculate a total amount on a row after the row has been saved.
Is there a new way to call a method similar to "update_without_callbacks" on an "after_save"?
I need to calculate a total amount on a row after the row has been saved.
I believe update_attribute(:column, value) skips the callbacks. - Richard
It still creates a loop.