forked from hippoz/brainlet
10 lines
No EOL
267 B
JavaScript
Executable file
10 lines
No EOL
267 B
JavaScript
Executable file
const mongoose = require('mongoose');
|
|
const Post = require('./Post');
|
|
|
|
const Category = mongoose.model('Category', {
|
|
title: String,
|
|
creator: {type: mongoose.Schema.Types.ObjectId, ref: 'User'},
|
|
posts: [Post.schema]
|
|
});
|
|
|
|
module.exports = Category; |