Files
illegitimate-bot/src/schemas/staffAppSchema.ts
2023-12-28 13:17:57 +01:00

9 lines
258 B
TypeScript

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