Skip to content

Instantly share code, notes, and snippets.

@ghankerson
Created November 11, 2014 16:23
Show Gist options
  • Save ghankerson/b13d6fdc760090bb50d3 to your computer and use it in GitHub Desktop.
Save ghankerson/b13d6fdc760090bb50d3 to your computer and use it in GitHub Desktop.
class Parent
include Mongoid::Document
field :name, type: String
field :url, type: String
field :email, type: String
field :phone, type: String
field :address, type: String
field :donate_url, type: String
field :twitter, type: String
field :facebook, type: String
field :slogan, type: String
field :genres, type: String
embedded_in :author
validates :name, presence: true
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment