Guest User

Untitled

a guest
Jan 22nd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. class Foo
  2. include Mongoid::Document
  3. embeds_many :bars
  4. end
  5.  
  6. class Bar
  7. include Mongoid::Document
  8. embedded_in :person
  9. has_many :gazs
  10. end
  11.  
  12. class Gaz
  13. include Mongoid::Document
  14. belongs_to :bar
  15. end
Add Comment
Please, Sign In to add comment