Making a Schema
How to build a Schema with Mongoose
const { Schema, model } = require("mongoose");const schema = new Schema({
userId: {
type: String,
required: true,
},
enabled: {
type: Boolean,
default: false,
},
level: {
type: Number,
default: 0,
},
});Last updated