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