diff options
| author | 8cy <[email protected]> | 2020-04-23 11:48:22 -0700 |
|---|---|---|
| committer | 8cy <[email protected]> | 2020-04-23 11:48:22 -0700 |
| commit | 02b211b23bb7f95895c7e7f9dbf16983b13692af (patch) | |
| tree | 0b92429799ad61cc0f1d676e9be03389c44155a8 /src/models | |
| parent | change invite link, v.7.3.6 (diff) | |
| download | dep-core-02b211b23bb7f95895c7e7f9dbf16983b13692af.tar.xz dep-core-02b211b23bb7f95895c7e7f9dbf16983b13692af.zip | |
DARLING in the FRANXX, v7.4.0
- add mongo db support
- add zero two darling cmd
Diffstat (limited to 'src/models')
| -rw-r--r-- | src/models/darling.ts | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/models/darling.ts b/src/models/darling.ts new file mode 100644 index 0000000..48cb665 --- /dev/null +++ b/src/models/darling.ts @@ -0,0 +1,11 @@ +import mongo from 'mongoose'; +const darlingSchema = new mongo.Schema({ + _id: mongo.Schema.Types.ObjectId, + username: String, + userID: String, + guildname: String, + guildID: String, + time: String +}); + +export = mongo.model('Darling', darlingSchema)
\ No newline at end of file |