我有paperclip gem,当我开始开发时,这个迁移工作在原始PC中,我在另一台具有相同Gemfile的PC上运行我的迁移并给我这个错误: undefined method`add_attachment'在这次迁移中,请帮帮我
class AddImageToProductimages < ActiveRecord::Migration
def self.up
add_attachment :productimages, :imagen
end
def self.down
remove_attachment :productimages, :imagen
end
end