Finishing update and verify
This commit is contained in:
10
schemas/verifySchema.js
Normal file
10
schemas/verifySchema.js
Normal file
@@ -0,0 +1,10 @@
|
||||
const { Schema, model } = require('mongoose');
|
||||
|
||||
const verifySchema = new Schema({
|
||||
_id: Schema.Types.ObjectId,
|
||||
userID: { type: String, required: true },
|
||||
uuid: { type: String, required: true },
|
||||
rank: { type: String, required: true },
|
||||
});
|
||||
|
||||
module.exports = model('verify', verifySchema, 'verify');
|
||||
Reference in New Issue
Block a user