orbit4-5/app/models/page_relationship.rb

11 lines
237 B
Ruby
Raw Normal View History

2014-04-01 07:10:21 +00:00
class PageRelationship
include Mongoid::Document
include Mongoid::Timestamps
field :page_id, type: String
field :child_id, type: String
belongs_to :parent, :class_name => "Page"
belongs_to :child, :class_name => "Page"
end