devbug/app/models/v1/Invite.model.js

13 lines
285 B
JavaScript
Raw Normal View History

2019-06-24 16:45:22 +00:00
/*
* Invite Model
* -------------------------------------------------------------
* Put some description here!
*/
const Invite = {
project_id: String,
by_user_id: String,
created_on: Date,
used: { type: Boolean, default: false }
}
module.exports = exports = Invite