mirror of
https://github.com/danbee/my-images
synced 2025-03-04 08:49:05 +00:00
12 lines
257 B
Ruby
12 lines
257 B
Ruby
namespace :images do
|
|
desc "Migrate all the images to Active Storage"
|
|
task migrate: :environment do
|
|
Image.all.each do |image|
|
|
image.image.attach(
|
|
io: image.df_image.file,
|
|
filename: image.df_image.name,
|
|
)
|
|
end
|
|
end
|
|
end
|