Cog Factory 2020. 8. 23. 15:28
// Comment.js

import mongoose from 'mongoose';

const commentSchema = new mongoose.Schema({
  createdAt: String,
  text: {
    type: String,
    required: 'This is comment',
  },
  creator: {
    type: mongoose.Schema.Types.ObjectId,
    ref: 'User',
  },
});

const model = mongoose.model('Comment', commentSchema);

export default model;

참고 자료

소스 코드

https://github.com/zpskek/wetube-v3/commit/130a2c8d857d71a655ba274f9306d0cbb2a2ef50