17 lines
285 B
Ruby
17 lines
285 B
Ruby
|
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
|
||
|
|
||
|
field :type
|
||
|
field :app_controller
|
||
|
has_many :app_auths
|
||
|
|
||
|
end
|