公開日時: 2011-03-08 05:58 Rails 2.3.3からupdated_atのタイムスタンプを更新できます。 user.updated_at #=> "Wed Jan 27 23:29:22 +1300 2010" user.touch user.updated_at #=> "Wed Jan 27 23:30:08 +1300 2010" 関連する親モデルのupdated_atも更新する場合は、associationを指定する際に :touch オプションを指定します。 class Organization < ActiveRecord::Base has_many :users end class User < ActiveRecord::Base belongs_to :organization, :touch => true end 上記のように:touchオプショ