diff options
author | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-02-16 21:16:56 +0100 |
---|---|---|
committer | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-02-16 21:16:56 +0100 |
commit | 57746da87206f31c8612b975df37305fb2a5e0b7 (patch) | |
tree | b3f1774d3e4921571e95a40035875ad4b01da145 /src/models/Guild.ts | |
parent | :bug: fix database (diff) | |
download | server-57746da87206f31c8612b975df37305fb2a5e0b7.tar.xz |
:bug: fix database
Diffstat (limited to '')
-rw-r--r-- | src/models/Guild.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/models/Guild.ts b/src/models/Guild.ts index a6ed6773..8eb7533f 100644 --- a/src/models/Guild.ts +++ b/src/models/Guild.ts @@ -1,4 +1,5 @@ import { Schema, model, Types, Document } from "mongoose"; +import db from "../util/Database"; export interface GuildDocument extends Document, Guild { id: bigint; @@ -86,4 +87,5 @@ export const GuildSchema = new Schema({ widget_enabled: Boolean, }); -export const GuildModel = model<GuildDocument>("Guild", GuildSchema, "guilds"); +// @ts-ignore +export const GuildModel = db.model<GuildDocument>("Guild", GuildSchema, "guilds"); |