Skip to content

Instantly share code, notes, and snippets.

@sandboxws
Created September 30, 2018 20:48
Show Gist options
  • Select an option

  • Save sandboxws/4b3d8a814b0c8428cd1723a1688126a1 to your computer and use it in GitHub Desktop.

Select an option

Save sandboxws/4b3d8a814b0c8428cd1723a1688126a1 to your computer and use it in GitHub Desktop.
class Author
include Mongoid::Document
include Mongoid::Timestamps
field :first_name, type: String
field :last_name, type: String
field :email, type: String
has_many :posts
end
class Article
include Mongoid::Document
include Mongoid::Timestamps
field :title, type: String
field :description, type: String
belongs_to :author, index: true
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment