Skip to content

Instantly share code, notes, and snippets.

@zanker
Created February 5, 2011 19:41
Show Gist options
  • Save zanker/812719 to your computer and use it in GitHub Desktop.
Save zanker/812719 to your computer and use it in GitHub Desktop.
class Person
include Mongoid::Document
field :name, :type => String
embeds_one :location
end
class Location
include Mongoid::Document
field :country, :type => String, :default => "US"
field :address, :type => String
embedded_in :person, :inverse_of => :location
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment