Rails2.0のmigrationでは、以下のように timestamps を書くと、
create_table :user do |t| t.string :name t.timestamps end
自動的に created_atとupdated_at を作ってくれます。