personal-journal/app/models/journal_paper_type.rb

10 lines
186 B
Ruby
Raw Normal View History

2014-06-12 10:27:26 +00:00
class JournalPaperType
include Mongoid::Document
include Mongoid::Timestamps
field :key, type: String
field :title, type: String, localize: true
has_many :journal_papers
end