nyx/unused/models/custom-commands.js

11 lines
215 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,
}),
);