1
0
Fork 0

logID in schema should be string not number

refactor/models
Matthew 2019-10-27 23:39:44 -04:00
parent a263b91551
commit 661beb37b2
No known key found for this signature in database
GPG Key ID: 766BE43AE75F7559
1 changed files with 1 additions and 1 deletions

View File

@ -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,