orbit-basic/app/models/purchase/purchase.rb

13 lines
224 B
Ruby
Raw Normal View History

2011-08-18 05:43:33 +00:00
class Purchase
include Mongoid::Document
include Mongoid::Timestamps
field :purchase_id
field :title
field :author
field :intro
field :downloaded, :type => Boolean
field :download_date, :type => Date
2011-08-18 05:43:33 +00:00
end