7fife-backend/models/adsSetting.model.js

23 lines
422 B
JavaScript
Raw Normal View History

2024-03-07 13:01:44 +00:00
const mongoose = require('mongoose');
const adsSettingSchema = new mongoose.Schema({
adsTiming : {
minutes :{
type : Number,
default : 0
},
seconds : {
type : Number,
default : 0
}
},
adsStatus : {
type : Boolean,
default : true
}
})
module.exports = mongoose.model('AdsSetting',adsSettingSchema)