Added spacing and presence

This commit is contained in:
2023-04-26 09:32:56 +00:00
parent da1866915b
commit 37b0fc71ec
3 changed files with 18 additions and 6 deletions

View File

@ -1,10 +1,10 @@
const mongoose = require('mongoose');
const wolfclountSchema = new mongoose.Schema({
const wolfcountSchema = new mongoose.Schema({
count: Number,
validation: String
});
const Wolfcount = mongoose.model('Wolfcount', wolfclountSchema);
const Wolfcount = mongoose.model('Wolfcount', wolfcountSchema);
module.exports = Wolfcount;