import { Schema, model } from "mongoose"; const schema = new Schema({ Members: Array, Guild: String, }); module.exports = model("members", schema);