hps_member/app/models/hps_file.rb

14 lines
240 B
Ruby
Raw Normal View History

2017-05-18 12:12:35 +00:00
class HpsFile
include Mongoid::Document
include Mongoid::Timestamps
mount_uploader :file, AssetUploader
field :title
field :download_count, type: Integer, :default => 0
field :year, type: Integer
belongs_to :hps_member
end