Manually set updated_at in Rails
If it’s a one time thing you can turn record_timestamps on or off. ActiveRecord::Base.record_timestamps = false #set timestamps manually ActiveRecord::Base.record_timestamps = true When I ran into this issue with my app, I searched around for a bit and this seemed like it made the most sense to me. It’s an initializer that I can call … Read more