brainlet/brainlet/models/Post.js

10 lines
279 B
JavaScript
Raw Normal View History

const mongoose = require("mongoose");
const Post = mongoose.model("Post", {
title: String,
body: String,
creator: {type: mongoose.Schema.Types.ObjectId, ref: "User"},
categoryId: {type: mongoose.Schema.Types.ObjectId, ref: "Category"}
});
2020-10-05 20:36:03 +03:00
module.exports = Post;