UNPKG

zerotwomd

Version:

Multi device wa bot created by Team Zero Two.

10 lines 300 B
const mongoose = require('mongoose'); const userSchema = new mongoose.Schema({ id: { type: String, require: true, unique: true }, name: { type: String }, ban: { type: String}, bot: { type: Boolean}, hg: { type: String} }) const user = mongoose.model("User", userSchema) module.exports = user