mirror of
https://github.com/aydenjahola/discord-multipurpose-bot.git
synced 2024-11-21 16:25:55 +00:00
9 lines
312 B
JavaScript
9 lines
312 B
JavaScript
const mongoose = require("mongoose");
|
|
|
|
const wordAssociationSchema = new mongoose.Schema({
|
|
word: { type: String, required: true },
|
|
associatedWords: [{ type: String }],
|
|
last_updated: { type: Date, default: Date.now },
|
|
});
|
|
|
|
module.exports = mongoose.model("WordAssociation", wordAssociationSchema);
|