orbit4-5/app/models/page_relationship.rb

11 lines
237 B
Ruby

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