Update HStore column's values without triggering after_save callbacks

I’m doing some wonky stuff and I am at a point where I need to, in an after_save callback, modify some data and update an hstore column, but not trigger the save callback again.

What methods are available to me?

Thank you!

I'm doing some wonky stuff and I am at a point where I need to, in an after_save callback, modify some data and update an hstore column, but not trigger the save callback again.

What methods are available to me?

How about update_column(s) ActiveRecord::Persistence ?

Fred