personal_certificate/app/models/certificate_category.rb

9 lines
237 B
Ruby
Raw Permalink Normal View History

2024-01-23 00:11:17 +00:00
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