我需要覆盖 rails update_all 方法,以便更新特定模型的 updated_at 字段。
我在 app/config/initializer/xyzfile.rb 添加了以下模块:
module ActiveRecord
class Relation
def update_all_with_updated_at(updates)
case updates
when Hash
updates.reverse_merge!(updated_at: Time.now)
when String
updates += ", updated_at = '#{Time.now.to_s(:db)}'"
when Array
updates[0] += ', updated_at = ?'
updates << Time.now
end
update_all_without_updated_at(updates)
end
alias_method_chain :update_all, :updated_at
end
end
我想将其用于特定型号,我该怎么做?
- 在每个 update_all 中添加 updated_at 是解决方案之一,但我正在寻找一个可以覆盖 update_all 方法的解决方案。