mongoose.Schema
. का उपयोग करके आप स्कीमा निर्माण भाग को याद कर रहे हैं ,
const schoolNotices = mongoose.model("schoolNotices",
new mongoose.Schema(
{
title:{
type: String
},
date:{
type:String
},
details:{
type:String
}
},
{ collection: "schoolNotices" } // optional
)
);