personal-thesis-guidance/app/models/thesis_guidance_paper_file.rb

13 lines
358 B
Ruby

class ThesisGuidancePaperFile
include Mongoid::Document
include Mongoid::Timestamps
include Mongoid::Attributes::Dynamic
field :description, type: String, localize: true
field :title, type: String, localize: true
field :should_destroy, type: Boolean
mount_uploader :thesis_guidance_file, AssetUploader
belongs_to :thesis_guidance_paper
end