I have a table called 'my_models' with a 'json' column called 'settings'.
I also have the following model:
class MyModels < ActiveRecord::Base
end
The 'settings' attribute of an 'MyModels' instance is a Hash.
Is it possible to configure 'MyModels' to type cast the raw column value of 'settings' to a HashWithIndifferentAccess instead of Hash?