From 661beb37b22213c3b307a1e2ea1ca02e3979cf3b Mon Sep 17 00:00:00 2001 From: Matthew R Date: Sun, 27 Oct 2019 23:39:44 -0400 Subject: [PATCH] logID in schema should be string not number --- src/models/Moderation.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/models/Moderation.ts b/src/models/Moderation.ts index 2bafd1f..9c15298 100644 --- a/src/models/Moderation.ts +++ b/src/models/Moderation.ts @@ -25,7 +25,7 @@ export interface ModerationInterface extends Document { const Moderation: Schema = new Schema({ username: String, userID: String, - logID: Number, + logID: String, moderatorID: String, reason: String, type: String,