2020-01-29 11:26:44 +00:00
|
|
|
class ClassSettingFields
|
|
|
|
include Mongoid::Document
|
|
|
|
include Mongoid::Timestamps
|
|
|
|
# encoding: utf-8
|
|
|
|
include OrbitTag::Taggable
|
2020-03-18 08:12:08 +00:00
|
|
|
include OrbitCategory::Categorizable
|
2020-01-29 11:26:44 +00:00
|
|
|
field :class_number_range , type: Array , default: []
|
|
|
|
field :enrollment_available , type: Fixnum , default: 0
|
|
|
|
end
|