我有一个旧模型,其中包含使用 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
如何将旧文件移动到新模型?