UNPKG

admin-bro-hapijs

Version:

This is an official AdminBro plugin which integrates it to hapijs framework.

16 lines (11 loc) 284 B
const mongoose = require('mongoose') const { Schema } = mongoose const ArticleSchema = new Schema({ title: String, content: String, author: String, createdAt: Date, published: Boolean, }) const Article = mongoose.model('Article', ArticleSchema) module.exports = Article