Created
April 24, 2010 00:00
-
-
Save tanordheim/377324 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class BarNode < Node | |
field :bar_test | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class FooNode < Node | |
field :foo_test | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Node | |
include Mongoid::Document | |
field :title | |
belongs_to_related :parent, :class_name => "Node", :foreign_key => :node_id | |
has_many_related :children, :class_name => "Node" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment