personal-project/app/models/project_type.rb

10 lines
190 B
Ruby

class ProjectType
include Mongoid::Document
include Mongoid::Timestamps
field :title, localize: true
field :sort_position, type: Integer, default: 0
has_many :projects
end