10 lines
224 B
JavaScript
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);
|