personal_honor/app/models/honor_type.rb

9 lines
210 B
Ruby

class HonorType
include Mongoid::Document
include Mongoid::Timestamps
field :title, :type => String, :default => "", :localize => true
field :sort_position, type: Integer, default: 0
has_many :honors
end