Tagged Questions
1
vote
1answer
301 views
Rails 3 - trying to create polymorphic has_one association in console
Here's my code:
Models:
class Article < ActiveRecord::Base
attr_accessible :title, :author, :content, :imageable_attributes
has_one :image, as: :imageable, dependent: :destroy
...