AllenYuan

put comments in article schema

May 12th, 2020
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //...
  2.   author: { type: mongoose.Schema.Types.ObjectId, ref: 'User' },
  3.   comments: [{ type: mongoose.Schema.Types.ObjectId, ref: 'Comment' }],
  4. }, {timestamps: true, usePushEach: true});
  5. //...
Advertisement
Add Comment
Please, Sign In to add comment