orbit-basic/vendor/built_in_modules/personal_patent/app/models/writing_patent_file.rb

15 lines
272 B
Ruby

class WritingPatentFile
include Mongoid::Document
include Mongoid::Timestamps
mount_uploader :file, AssetUploader
field :description, localize: true
field :should_destroy, :type => Boolean
field :title, localize: true
belongs_to :writing_patent
end