You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
classMyApp < Thordesc:migrate_from_paperclip_to_carrierwave,'Migrate attachments from paperclip to carrierwave'defmigrate_from_paperclip_to_carrierwaverequireFile.expand_path'config/environment'FileUtils.mkdir_pRails.root.join('public','uploads')Product.where('image_file_name IS NOT NULL').eachdo |product|
product.image=File.open(Rails.root.join('public','system','images',product.id.to_s,'original',product.image_file_name))product.save!endendend