const mongoose = require('mongoose') const mongoosePaginate = require('mongoose-paginate-v2') const timestamp = require('mongoose-timestamp') const license = new mongoose.Schema({ userId : String, Confirmation : { type : Boolean, default : false}, licenseImg : { type : String }, }) license.plugin(timestamp) license.plugin(mongoosePaginate) const LicenseMoldel = mongoose.model('license', license) module.exports = LicenseMoldel