diff options
| author | 8cy <[email protected]> | 2020-07-27 04:10:57 -0700 |
|---|---|---|
| committer | 8cy <[email protected]> | 2020-07-27 04:10:57 -0700 |
| commit | 9ab23583551c495d3a212ef24a47696a8da460d2 (patch) | |
| tree | ff8b1de500f3a17dad78d6d6fee381f45078723f /server/src/database/models/ReactionGuildModel.ts | |
| parent | fix: formatting in wc/gb json files (diff) | |
| download | dep-core-9ab23583551c495d3a212ef24a47696a8da460d2.tar.xz dep-core-9ab23583551c495d3a212ef24a47696a8da460d2.zip | |
big revamp n stuff
Diffstat (limited to 'server/src/database/models/ReactionGuildModel.ts')
| -rw-r--r-- | server/src/database/models/ReactionGuildModel.ts | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/server/src/database/models/ReactionGuildModel.ts b/server/src/database/models/ReactionGuildModel.ts deleted file mode 100644 index 6389b56..0000000 --- a/server/src/database/models/ReactionGuildModel.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { Document, Schema, model } from 'mongoose'; - -export interface Guild extends Document { - id: string; - prefix: string; - premium: boolean; - expiresAt: Date; -} - -const Guild: Schema = new Schema({ - id: String, - prefix: String, - premium: Boolean, - expiresAt: Date -}, { strict: false }); -export default model<Guild>('Guild', Guild);
\ No newline at end of file |