UNPKG

egg-rbac-instance

Version:
14 lines (9 loc) 252 B
'use strict'; module.exports = (mongoose,db) => { const AdptSchema = new mongoose.Schema({ name: { type: String }, alias: { type: String }, values: { type: String } }, { timestamps: true }) return db.model('Adpt', AdptSchema) };