Skip to content
Snippets Groups Projects
User.js 261 B
Newer Older
Fajar Nugroho's avatar
Fajar Nugroho committed
const mongoose = require('mongoose');

const userSchema = new mongoose.Schema({
Fajar Nugroho's avatar
Fajar Nugroho committed
  userId : {type : Number, required : true, unique : true},
  token : {type : String, required : true}
Fajar Nugroho's avatar
Fajar Nugroho committed
});


const User = mongoose.model('User', userSchema);
module.exports = User;