首先我使用的是 db mysql,但后来我改用 postgres。
我编写了一些函数来将 db 从 sql 克隆到 postgres。而且我对 Image 表中的克隆数据库有疑问。
ImageClone.all.each do |p|
img = Image.new()
img.imageable_id = p.imageable_id
img.imageable_type = p.imageable_type
img.uploader = p.uploader
puts p.uploader #=> 'testing_image.jpg'
img.save
end
=> #<Image id: 1, imageable_id: 1, imageable_type: "ProductType", uploader: nil>
如何设置图像 url = 'testing_image.jpg'。有什么建议吗?