From 02b211b23bb7f95895c7e7f9dbf16983b13692af Mon Sep 17 00:00:00 2001 From: 8cy <50817549+8cy@users.noreply.github.com> Date: Thu, 23 Apr 2020 11:48:22 -0700 Subject: DARLING in the FRANXX, v7.4.0 - add mongo db support - add zero two darling cmd --- src/models/darling.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/models/darling.ts (limited to 'src/models') 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 -- cgit v1.2.3