summary refs log tree commit diff
path: root/dist/models/Ban.d.ts
diff options
context:
space:
mode:
authorIntevel ツ <59223342+Intevel@users.noreply.github.com>2021-02-21 12:24:02 +0100
committerIntevel ツ <59223342+Intevel@users.noreply.github.com>2021-02-21 12:24:02 +0100
commit5aee359cf385dca7b19fb9e94761f4b13a3efeb0 (patch)
tree9eefd04c764b0e3a9e76d0b34ce01699fde7e2a1 /dist/models/Ban.d.ts
parent:wrench: build (diff)
downloadserver-5aee359cf385dca7b19fb9e94761f4b13a3efeb0.tar.xz
BanModel Update
I edited the ban scheme and added a new value
Diffstat (limited to 'dist/models/Ban.d.ts')
-rw-r--r--dist/models/Ban.d.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/dist/models/Ban.d.ts b/dist/models/Ban.d.ts

index 2f6399d7..8960ca52 100644 --- a/dist/models/Ban.d.ts +++ b/dist/models/Ban.d.ts
@@ -3,6 +3,7 @@ import { Schema, Document } from "mongoose"; export interface Ban extends Document { user_id: bigint; guild_id: bigint; + executor_id: BigInt; ip: string; reason?: string; }