user working parameter added

This commit is contained in:
nau
2016-09-09 21:58:51 +02:00
parent 0eeb2cab2f
commit fd5abae31f
5 changed files with 60 additions and 9 deletions

View File

@@ -11,6 +11,7 @@ var userSchema = new Schema({
github: { type: String },
web: { type: String },
projects: { type: String },
connected: { type: Boolean }
connected: { type: Boolean },
working: { type: Boolean }
})
module.exports = mongoose.model('userModel', userSchema);