14 lines
307 B
JavaScript
14 lines
307 B
JavaScript
/*
|
|
* Invite Model
|
|
* -------------------------------------------------------------
|
|
* Put some description here!
|
|
*/
|
|
const Invite = {
|
|
project_id: String,
|
|
by_user_id: String,
|
|
api_type: String,
|
|
created_on: Date,
|
|
used: { type: Boolean, default: false }
|
|
}
|
|
|
|
module.exports = exports = Invite |