Rails,CarrierWave和S3:将旧文件从旧模型移动到新模型

时间:2013-08-05 15:20:23

标签: ruby-on-rails amazon-s3 carrierwave

我有一个传统模型,文件存储在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

如何将旧文件移动到新模型?

0 个答案:

没有答案