const {Schema, model} = require('mongoose'); const UserType = new Schema({ id: String, warnings: Array, }); module.exports = model('User_Storage', UserType);