const mongoose = require('mongoose')
const Schema Name = mongoose.Schema({
name : {
type : String,
default : 'default txt',
},
})
module.exports = mongoose.model( 'model name' , Schema Name)
const mongoose = require('mongoose')
const Schema Name = mongoose.Schema({
name : {
type : String,
default : 'default txt',
},
})
module.exports = mongoose.model( 'model name' , Schema Name)