summary refs log tree commit diff
path: root/dist/models/Message.d.ts
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-02-13 23:57:02 +0100
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-02-13 23:57:02 +0100
commit52964aed06c879ac31987e4c487de9c66292e0c2 (patch)
tree9dbda022933d8b93e66f2ce5c51e25ba1b0b208e /dist/models/Message.d.ts
parent:bug: export MongooseCache (diff)
downloadserver-52964aed06c879ac31987e4c487de9c66292e0c2.tar.xz
:art: Channel + Member + Message + Role in separate collection
Diffstat (limited to 'dist/models/Message.d.ts')
-rw-r--r--dist/models/Message.d.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/dist/models/Message.d.ts b/dist/models/Message.d.ts

index 9ff70b2c..57bb0d6a 100644 --- a/dist/models/Message.d.ts +++ b/dist/models/Message.d.ts
@@ -3,6 +3,7 @@ import { Schema, Document } from "mongoose"; import { ChannelType } from "./Channel"; export interface Message extends Document { id: bigint; + channel_id: bigint; author_id?: bigint; webhook_id?: bigint; application_id: bigint;