Added timestamp to schema

Signed-off-by: Taken <taken@mairimashita.org>
This commit is contained in:
2023-08-06 22:00:26 +02:00
parent 068e0f19d6
commit 881d5f94b9
2 changed files with 3 additions and 0 deletions

View File

@@ -5,6 +5,7 @@ const waitinglistSchema = new Schema({
userID: { type: String, required: true },
uuid: { type: String, required: true },
IGN: { type: String, required: true },
timestamp: { type: String, required: true }
});
module.exports = model('waitinglist', waitinglistSchema, 'waitinglist');