14 lines
293 B
Ruby
14 lines
293 B
Ruby
|
# encoding: utf-8
|
||
|
class CurationPostSection
|
||
|
include Mongoid::Document
|
||
|
include Mongoid::Timestamps
|
||
|
|
||
|
field :title, localize: true
|
||
|
field :section_type
|
||
|
field :text, localize: true
|
||
|
field :universal_table
|
||
|
field :table_entries, type: Array, default: []
|
||
|
|
||
|
belongs_to :curation_post
|
||
|
end
|