Hi All,
I have this requirement where in I am migrating data from database of
one system to database of a new system. The new system is a rails app
and I want my migrations to go via active record validations, however
I want the callbacks to be disabled. I tried using
Model.skip_callback(:save, :after, :my_callback)
But this somehow does not skip the callbacks. Need help !!
Thanks in advance !!