You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

18 lines
514 B

var mongoose = require('mongoose'),
Schema = mongoose.Schema;
var userSchema = new Schema({
username: { type: String },
password: { type: String },
description: { type: String },
mail: { type: String },
avatar: { type: String },
github: { type: String },
web: { type: String },
projects: { type: String },
connected: { type: Boolean },
working: { type: Boolean },
lastConnection: { type: Date }
})
module.exports = mongoose.model('userModel', userSchema);