UNPKG

@admin-bro/express

Version:

This is an official AdminBro plugin which integrates it to expressjs framework

16 lines (11 loc) 284 B
import mongoose from "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;