import { Schema, model } from "mongoose" const guildAppSchema = new Schema({ _id: Schema.Types.ObjectId, userID: { type: String, required: true }, uuid: { type: String, required: true }, }) export = model("guildapp", guildAppSchema, "guildapp")