diff options
| author | 8cy <[email protected]> | 2020-07-07 03:55:21 -0700 |
|---|---|---|
| committer | 8cy <[email protected]> | 2020-07-07 03:55:21 -0700 |
| commit | 385b0960abdc8bb13172330a973dafd56560cf8d (patch) | |
| tree | 86e85d23404a5170ffbf870a6faeba77b3430e0e /src/models | |
| parent | add fanart for emma :star2: (diff) | |
| download | dep-core-385b0960abdc8bb13172330a973dafd56560cf8d.tar.xz dep-core-385b0960abdc8bb13172330a973dafd56560cf8d.zip | |
big cool :star:
- add commenting to bot.ts
- add types to most of the voice commands
- add art and verify cmd for emma
- add roastwilly cmd
- fix rp cmd formatting
Diffstat (limited to 'src/models')
| -rw-r--r-- | src/models/Verify.ts | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/models/Verify.ts b/src/models/Verify.ts new file mode 100644 index 0000000..17da445 --- /dev/null +++ b/src/models/Verify.ts @@ -0,0 +1,11 @@ +import mongo from 'mongoose'; +const verifySchema = new mongo.Schema({ + _id: mongo.Schema.Types.ObjectId, + username: String, + userID: String, + status: Boolean, + key: String, + time: String +}); + +export = mongo.model('Verify', verifySchema)
\ No newline at end of file |