Mam tabelę Produkty i chcę dodać kolumnę:
t.references :imageable, :polymorphic => true
Próbowałem wygenerować migrację w tym celu, wykonując:
$ rails generate migration AddImageableToProducts imageable:references:polymorphic
ale oczywiście robię to źle. Czy ktoś może coś zasugerować? Dzięki
Kiedy próbuję ręcznie wstawić go po wygenerowaniu migracji, zrobiłem to tak:
class AddImageableToProducts < ActiveRecord::Migration
def self.up
add_column :products, :imageable, :references, :polymorphic => true
end
def self.down
remove_column :products, :imageable
end
end
i nadal nie działa