Tôi có bảng Sản phẩm và muốn thêm một cột:
t.references :imageable, :polymorphic => true
Tôi đã cố gắng tạo di chuyển cho việc này bằng cách:
$ rails generate migration AddImageableToProducts imageable:references:polymorphic
nhưng rõ ràng là tôi đang làm sai. Ai có thể đưa ra bất kỳ đề nghị? Cảm ơn
Khi tôi cố gắng đưa nó vào theo cách thủ công sau khi tạo quá trình di chuyển, tôi đã làm như thế này:
class AddImageableToProducts < ActiveRecord::Migration
def self.up
add_column :products, :imageable, :references, :polymorphic => true
end
def self.down
remove_column :products, :imageable
end
end
và nó vẫn chưa hoạt động