Skip to content

Instantly share code, notes, and snippets.

@smoofles
Created June 6, 2011 07:57
Show Gist options
  • Save smoofles/1009900 to your computer and use it in GitHub Desktop.
Save smoofles/1009900 to your computer and use it in GitHub Desktop.
Mongoid hashes
class Page
include Mongoid::Document
include Mongoid::Timestamps
field :name, :type => String
field :author, :type => String
field :titles, :type => Hash
...
field :extradata, :type => Hash
field :history, :type => Hash
field :related_pages, :type => Array
...
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment