Added source
This commit is contained in:
10
models/wolfcount.js
Normal file
10
models/wolfcount.js
Normal file
@ -0,0 +1,10 @@
|
||||
const mongoose = require('mongoose');
|
||||
|
||||
const wolfclountSchema = new mongoose.Schema({
|
||||
count: Number,
|
||||
validation: String
|
||||
});
|
||||
|
||||
const Wolfcount = mongoose.model('Wolfcount', wolfclountSchema);
|
||||
|
||||
module.exports = Wolfcount;
|
Reference in New Issue
Block a user