summary refs log tree commit diff
path: root/src/models/Event.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/models/Event.ts')
-rw-r--r--src/models/Event.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/models/Event.ts b/src/models/Event.ts
index 515c6119..15b37f55 100644
--- a/src/models/Event.ts
+++ b/src/models/Event.ts
@@ -11,6 +11,7 @@ import { VoiceState } from "./VoiceState";
 import { ApplicationCommand } from "./Application";
 import { Interaction } from "./Interaction";
 import { Schema, model, Types, Document } from "mongoose";
+import db from "../util/Database";
 
 export interface Event {
 	guild_id?: bigint;
@@ -32,7 +33,8 @@ export const EventSchema = new Schema({
 	data: Object,
 });
 
-export const EventModel = model<EventDocument>("Event", EventSchema, "events");
+// @ts-ignore
+export const EventModel = db.model<EventDocument>("Event", EventSchema, "events");
 
 // ! Custom Events that shouldn't get sent to the client but processed by the server