personal-project/app/models/project_type.rb

9 lines
140 B
Ruby

class ProjectType
include Mongoid::Document
include Mongoid::Timestamps
field :title, localize: true
has_many :projects
end