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