orbit4-5/app/models/mobile_page_part.rb

12 lines
252 B
Ruby
Raw Normal View History

2014-05-29 10:32:27 +00:00
class MobilePagePart
include Mongoid::Document
include Mongoid::Timestamps
field :part_id, type: Integer
belongs_to :page
has_many :sub_parts, :dependent => :destroy
accepts_nested_attributes_for :sub_parts, :allow_destroy => true
end