const mongoose = require('mongoose') const AdminSchema = mongoose.Schema({ name: String, username: String, password: String, roles: Array, created_at: String, updated_at: String, scope: String, token: String }) module.exports = mongoose.model('Admin', AdminSchema)