Preview: article-model.ts
Size: 284 B
/proc/thread-self/root/home/byroehnu/.trash/node_modules11/@adminjs/express/examples/mongoose/article-model.ts
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;
Directory Contents
Dirs: 0 × Files: 2