U mist een onderdeel voor het maken van een schema, met behulp van mongoose.Schema
,
const schoolNotices = mongoose.model("schoolNotices",
new mongoose.Schema(
{
title:{
type: String
},
date:{
type:String
},
details:{
type:String
}
},
{ collection: "schoolNotices" } // optional
)
);