Skip to content
Snippets Groups Projects
Commit 298bad30 authored by Vytor Calixto's avatar Vytor Calixto :space_invader:
Browse files

[ci skip] Add pqr model

parent 1eade8f1
No related branches found
No related tags found
2 merge requests!116Release v1.0.0,!90Issue/347
const mongoose = require('mongoose')
const libs = `${process.cwd()}/libs`;
const log = require(`${libs}/log`)(module);
const User = require(`${libs}/models/user`);
const Schema = mongoose.Schema;
let PQRSchema = new Schema({
content: {
type: String,
required: true,
}
});
module.exports = mongoose.model('PQR', PQRSchema);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment