10 lines
235 B
JavaScript
10 lines
235 B
JavaScript
|
const mongoose = require('mongoose');
|
||
|
|
||
|
const wolfclountSchema = new mongoose.Schema({
|
||
|
count: Number,
|
||
|
validation: String
|
||
|
});
|
||
|
|
||
|
const Wolfcount = mongoose.model('Wolfcount', wolfclountSchema);
|
||
|
|
||
|
module.exports = Wolfcount;
|