我正在寻找一个ActiveRecord方法,根据数据库在更新时“now”的想法,将指定的DateTime字段设置为“now”:
SQL: update object_type set time_stamp=NOW() where id = 37
而不是
Ruby: get DateTime.now
SQL: update object_type set time_stamp=% where id = 37
对于简单的计数器(ActiveRecord::CounterCache.increment_counter
)