1class RecreatePhotos < ActiveRecord::Migration 2 def up 3 Photo.all.each do |photo| 4 puts "recreating #{photo.id}" 5 photo.image.recreate_versions! 6 end 7 end 8 9 def down 10 end 11end