Skip to content

Instantly share code, notes, and snippets.

@m3talsmith
Created July 8, 2011 05:10
Show Gist options
  • Save m3talsmith/1071185 to your computer and use it in GitHub Desktop.
Save m3talsmith/1071185 to your computer and use it in GitHub Desktop.
Possible embedded heirarchy
class Bulletin
include Mongoid::Document
embeds_many :sections
end
class Reading < Section
end
class Section
include Mongoid::Document
embedded_in :bulletin
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment