Files
illegitimate-bot/src/schemas/guildAppSchema.ts
2024-01-19 21:36:01 +01:00

10 lines
258 B
TypeScript

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")