मेरे पास एक उत्पाद तालिका है और एक कॉलम जोड़ना चाहते हैं:
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
और यह अभी भी काम नहीं किया है