Ürünler tablom var ve bir sütun eklemek istiyorum:
t.references :imageable, :polymorphic => true
Bunu yaparak bunun için geçiş oluşturmaya çalışıyordum:
$ rails generate migration AddImageableToProducts imageable:references:polymorphic
ama belli ki yanlış yapıyorum. Herhangi biri öneride bulunabilir mi? Teşekkürler
Taşımayı oluşturduktan sonra manuel olarak yerleştirmeye çalıştığımda, bunu şöyle yaptım:
class AddImageableToProducts < ActiveRecord::Migration
def self.up
add_column :products, :imageable, :references, :polymorphic => true
end
def self.down
remove_column :products, :imageable
end
end
ve hala işe yaramadı