personal-project/app/models/project_type.rb

9 lines
140 B
Ruby
Raw Normal View History

2014-07-04 06:14:37 +00:00
class ProjectType
include Mongoid::Document
include Mongoid::Timestamps
field :title, localize: true
has_many :projects
end