我有一个传统模型,文件存储在CarrierWave和S3中,我需要将这些文件移动到新模型中,因为重新设计。
我试过这样做:
NewModel.create(:name => "bla", :file => old_model_object.file)
但这导致了这个错误:
[WARNING] fog: the specified s3 bucket name(my-bucket-development) is not a
valid dns name, which will negatively impact performance. For details see:
docs.amazonwebservices.com/AmazonS3/latest/dev/…
rake aborted! undefined method `content_length' for nil:NilClass
如何将旧文件移动到新模型?