2022-03-10 02:11:18 +00:00
|
|
|
class ApplicationFormEmailSet
|
2020-01-12 06:39:32 +00:00
|
|
|
include Mongoid::Document
|
|
|
|
include Mongoid::Timestamps
|
|
|
|
|
|
|
|
field :field_name, type: String
|
|
|
|
field :title
|
|
|
|
field :content
|
|
|
|
field :disabled, type: Boolean, default: false
|
2022-03-10 02:11:18 +00:00
|
|
|
belongs_to :application_form_main
|
2020-01-12 06:39:32 +00:00
|
|
|
end
|