将回形针迁移到carrierwave时,我按照文档https://github.com/carrierwaveuploader/carrierwave#migrating-from-paperclip进行了操作 所以我添加了回形针兼容性
include CarrierWave::Compatibility::Paperclip
我安装了上传器
mount_uploader :image, ImageUploader
我还使用以下迁移重命名了列名
rename_column :picture, :image_file_name, :image
(我迁移了这次迁移)
但是在网站上,网址指向/uploads/picture/image/...
实际上,图像位于/ images
所以在我看来,回形针兼容性并没有真正做到这一点。知道我可能做错了吗?