djs-systems
Version:
The simplest way to build complex Discord bots.
14 lines (13 loc) • 545 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const mongoose_1 = __importDefault(require("mongoose"));
const BumpSchema = new mongoose_1.default.Schema({
counts: { type: Array() },
channel: { type: String },
nextBump: { type: Number },
guild: { type: String } // Guild
});
exports.default = mongoose_1.default.model('Bump-Reminder', BumpSchema);