nyx/models/warns.js
night0721 bc346138dd Bot
2021-06-12 18:53:51 +08:00

12 lines
208 B
JavaScript

const mongoose = require("mongoose");
module.exports = mongoose.model(
"warn",
new mongoose.Schema({
Guild: String,
User: String,
Warns: {
type: Array,
default: [],
},
})
);