const mongoose = require('mongoose');
const productSchema = new mongoose.schema({
name: String,
price: Number,
brand: String
}, {
timestamps: true
});
module.exports = mongoose.model('Product', productSchema);
Above is my code which I have written for learning can anyone pls help me solve the Error I'm facing
It should be mongoose.Schema()!