Files
HackFlowy/models/User.js
T
2014-10-17 18:47:24 -04:00

13 lines
355 B
JavaScript

var mongoose = require('mongoose');
var userSchema = mongoose.Schema({
// _id: String,
google : {
id : String,
token : String,
email : String,
name : String
}
});
// create the model for users and expose it to our app
module.exports = mongoose.model('User', userSchema);