9 lines
165 B
Ruby
9 lines
165 B
Ruby
|
class Invite
|
||
|
include Mongoid::Document
|
||
|
store_in :invites
|
||
|
|
||
|
key :referer, Integer,
|
||
|
key :email, String,
|
||
|
key :code, String,
|
||
|
key :senton, Datetime
|
||
|
end
|