Railsドキュメント

説明

created_atとupdated_atを両方追加するメソッド

使い方

timestamps

usersテーブルにtimestampsを設定

create_table :users do |t|
  t.timestamps
end

ソースコード