summary refs log tree commit diff
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-02-21 22:52:41 +0100
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-02-21 22:52:41 +0100
commit0ab57bb6cd92dbd8c90f716645139d691de7493d (patch)
tree072e3f330b02e3298d7d067c435512ae205ca8c8
parent:bug: fix Event model (diff)
downloadserver-0ab57bb6cd92dbd8c90f716645139d691de7493d.tar.xz
:bug: fix ban Model Schema
-rw-r--r--dist/models/Ban.js2
-rw-r--r--dist/models/Ban.js.map2
-rw-r--r--src/models/Ban.ts2
3 files changed, 3 insertions, 3 deletions
diff --git a/dist/models/Ban.js b/dist/models/Ban.js

index 501e1508..abb0a4e2 100644 --- a/dist/models/Ban.js +++ b/dist/models/Ban.js
@@ -9,7 +9,7 @@ const Database_1 = __importDefault(require("../util/Database")); exports.BanSchema = new mongoose_1.Schema({ user_id: { type: mongoose_1.Types.Long, required: true }, guild_id: { type: mongoose_1.Types.Long, required: true }, - executor_id: { type: BigInt, required: true }, + executor_id: { type: mongoose_1.Types.Long, required: true }, reason: String, ip: String, }); diff --git a/dist/models/Ban.js.map b/dist/models/Ban.js.map
index 8bc13dae..580002a0 100644 --- a/dist/models/Ban.js.map +++ b/dist/models/Ban.js.map
@@ -1 +1 @@ -{"version":3,"file":"Ban.js","sourceRoot":"","sources":["../../src/models/Ban.ts"],"names":[],"mappings":";;;;;;AAAA,uCAA0D;AAC1D,gEAAkC;AAUrB,QAAA,SAAS,GAAG,IAAI,iBAAM,CAAC;IACnC,OAAO,EAAE,EAAE,IAAI,EAAE,gBAAK,CAAC,IAAI,EAAE,QAAQ,EAAE,IAAI,EAAE;IAC7C,QAAQ,EAAE,EAAE,IAAI,EAAE,gBAAK,CAAC,IAAI,EAAE,QAAQ,EAAE,IAAI,EAAE;IAC9C,WAAW,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE;IAC7C,MAAM,EAAE,MAAM;IACd,EAAE,EAAE,MAAM;CACV,CAAC,CAAC;AAEH,aAAa;AACA,QAAA,QAAQ,GAAG,kBAAE,CAAC,KAAK,CAAM,KAAK,EAAE,iBAAS,EAAE,MAAM,CAAC,CAAC"} \ No newline at end of file +{"version":3,"file":"Ban.js","sourceRoot":"","sources":["../../src/models/Ban.ts"],"names":[],"mappings":";;;;;;AAAA,uCAA0D;AAC1D,gEAAkC;AAUrB,QAAA,SAAS,GAAG,IAAI,iBAAM,CAAC;IACnC,OAAO,EAAE,EAAE,IAAI,EAAE,gBAAK,CAAC,IAAI,EAAE,QAAQ,EAAE,IAAI,EAAE;IAC7C,QAAQ,EAAE,EAAE,IAAI,EAAE,gBAAK,CAAC,IAAI,EAAE,QAAQ,EAAE,IAAI,EAAE;IAC9C,WAAW,EAAE,EAAE,IAAI,EAAE,gBAAK,CAAC,IAAI,EAAE,QAAQ,EAAE,IAAI,EAAE;IACjD,MAAM,EAAE,MAAM;IACd,EAAE,EAAE,MAAM;CACV,CAAC,CAAC;AAEH,aAAa;AACA,QAAA,QAAQ,GAAG,kBAAE,CAAC,KAAK,CAAM,KAAK,EAAE,iBAAS,EAAE,MAAM,CAAC,CAAC"} \ No newline at end of file diff --git a/src/models/Ban.ts b/src/models/Ban.ts
index 41db3f51..8fc3b124 100644 --- a/src/models/Ban.ts +++ b/src/models/Ban.ts
@@ -12,7 +12,7 @@ export interface Ban extends Document { export const BanSchema = new Schema({ user_id: { type: Types.Long, required: true }, guild_id: { type: Types.Long, required: true }, - executor_id: { type: BigInt, required: true }, + executor_id: { type: Types.Long, required: true }, reason: String, ip: String, // ? Should we store this in here, or in the UserModel? });