最佳答案
我有一个 Products 表,要添加一列:
t.references :imageable, :polymorphic => true
我试图通过以下方法产生移民:
$ rails generate migration AddImageableToProducts imageable:references:polymorphic
但是很明显我做错了。有人能给点建议吗? 谢谢
当我在生成迁移之后尝试手动将其放入时,我是这样做的:
class AddImageableToProducts < ActiveRecord::Migration
def self.up
add_column :products, :imageable, :references, :polymorphic => true
end
def self.down
remove_column :products, :imageable
end
end
但还是没用