1
0
mirror of https://github.com/journey-ad/Moe-Counter.git synced 2025-01-08 04:21:38 +01:00
Moe-Counter/db/schema.js

8 lines
226 B
JavaScript
Raw Normal View History

'use strict'
const mongoose = require('mongoose');
module.exports = new mongoose.Schema({
name: { type: String, required: true },
num: { type: Number, required: true }
}, { collection: 'tb_count', versionKey: false });