Eu tenho uma tabela de produtos e quero adicionar uma coluna:
t.references :imageable, :polymorphic => true
Eu estava tentando gerar migração para isso fazendo:
$ rails generate migration AddImageableToProducts imageable:references:polymorphic
mas obviamente estou fazendo errado. Alguém pode fazer alguma sugestão? obrigado
Quando tento inseri-lo manualmente após gerar a migração, fiz o seguinte:
class AddImageableToProducts < ActiveRecord::Migration
def self.up
add_column :products, :imageable, :references, :polymorphic => true
end
def self.down
remove_column :products, :imageable
end
end
e ainda não funcionou