Displaying 1 result from an estimated 1 matches for "image_content".
2007 Oct 18
4
Polymorphic Association?
...be assigned one of 3 types of content: TextContent,
ImageContent, or FileContent. So my current thinking is this:
ContentPage
has_many :content_blocks, :order => :position
ContentBlock
belongs_to :content_page
acts_as_list :scope => content_page_id
has_one :text_content
has_one :image_content
has_one :file_content
TextContent
belongs_to :content_block
ImageContent
belongs_to :content_block
FileContent
belongs_to :content_block
But when I envision looking up a Content Page and its associated
Content Blocks, I feel like it will be difficult to keep going and
find the actual Te...