This repository has been archived on 2024-03-16. You can view files and clone it, but cannot push or open issues or pull requests.
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
|
2011-09-13 06:03:03 +00:00
|
|
|
field :downloaded, :type => Boolean
|
2011-08-18 05:43:33 +00:00
|
|
|
|
|
|
|
end
|