Something went wrong. Try again.
[READ-ONLY] Mirror of https://github.com/Savy011/fullstackopen-exercises. My Exercise Submissions for FullStack Open fullstackopen.com/en
Something went wrong. Try again.
416 B · 19 lines
JavaScript
at main
12345678910111213141516171819const mongoose = require('mongoose')const uniqueValidator = require('mongoose-unique-validator')
const userSchema = new mongoose.Schema({ username: { type: String, required: true, unique: true, minLength: 4 }, favouriteGenre: { type: String, required: true }})
userSchema.plugin(uniqueValidator)
module.exports = mongoose.model('User', userSchema)