9 lines
237 B
Ruby
9 lines
237 B
Ruby
|
class CertificateCategory
|
||
|
include Mongoid::Document
|
||
|
include Mongoid::Timestamps
|
||
|
|
||
|
field :certificate_type, :type => String, :default => "", :localize => true
|
||
|
field :sort_position, type: Integer, default: 0
|
||
|
|
||
|
has_many :certificates
|
||
|
end
|