Zonies-Bot/models/savedPolls.js
2025-05-12 12:57:59 -05:00

10 lines
224 B
JavaScript

const { Schema, model } = require("mongoose");
const savedPolls = new Schema({
owner: { type: String },
desc: { type: String },
options: { type: Object },
});
module.exports = model("savedPolls", savedPolls);