logID in schema should be string not number
parent
a263b91551
commit
661beb37b2
|
@ -25,7 +25,7 @@ export interface ModerationInterface extends Document {
|
||||||
const Moderation: Schema = new Schema({
|
const Moderation: Schema = new Schema({
|
||||||
username: String,
|
username: String,
|
||||||
userID: String,
|
userID: String,
|
||||||
logID: Number,
|
logID: String,
|
||||||
moderatorID: String,
|
moderatorID: String,
|
||||||
reason: String,
|
reason: String,
|
||||||
type: String,
|
type: String,
|
||||||
|
|
Loading…
Reference in New Issue