Created
November 11, 2014 16:23
-
-
Save ghankerson/b13d6fdc760090bb50d3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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