Keeping Data in Sync with ActiveRecord::UpdatedAt
ActiveRecord does not touch updated_at when calling update_all, update_column, or update_columns. We realized that we rarely ever have a reason to modify data WITHOUT touching updated_at so we’ve enabled the touching behavior by default using the active_record-updated_at gem.
Post a comment