@greenpress/content
Version:
Content API for greenpress platform
22 lines (19 loc) • 469 B
JavaScript
const mongoose = require('mongoose')
const Schema = mongoose.Schema
// define the model schema
const CommentSchema = new mongoose.Schema({
tenant: {
type: String,
required: true,
index: true
},
post: { type: Schema.Types.ObjectId, ref: 'Post', required: true, index: true },
author: String,
content: String,
created: {
type: Date,
default: Date.now,
required: true,
}
})
module.exports = mongoose.model('Comment', CommentSchema)