Would it be possible to add a batch method for ActiveRecord: ``` ruby Model.upsert do |u| # N times u.row attr1: val1 end ``` And detect `created_at` and `updated_at`, so you do not have to write: ``` ruby now = Time.now u.row attr1: val1, created_at: now, updated_at: now ```