Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import mongoose from 'mongoose';
import UserSchema from './User.js';
const CommentSchema = new mongoose.Schema({
content: {
type: String,
required: true,
},
author: {
type: mongoose.Schema.Types.ObjectId,
ref: 'User',
required: true,
},
createdAt: {
type: Date,
default: Date.now,
},
});
const ArticleSchema = new mongoose.Schema({
title: {
type: String,
required: true,
},
content: {
type: String,
required: true,
},
imageUrls: {
type: [String],
},
author: {
type: mongoose.Schema.Types.ObjectId,
ref: 'User',
required: true,
},
comments: {
type: [CommentSchema],