1class MigrateOldPhotos < ActiveRecord::Migration 2 def change 3 Photo.find_each do |photo| 4 photo.update_attribute(:imageable_type, 'Creation') 5 end 6 end 7end