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

11 lines
227 B
JavaScript

const mongoose = require("mongoose");
module.exports = mongoose.model(
"custom-commands",
new mongoose.Schema({
Guild: String,
Command: String,
Response: Array,
Delete: Boolean,
Random: Boolean,
})
);