Product.js
739 Bytes
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
39
40
41
42
43
const mongoose = require('mongoose');
const Schema = mongoose.Schema;
const productSchema = mongoose.Schema({
writer: {
type: Schema.Types.ObjectId,
ref: 'User'
},
title: {
type: String,
maxlength: 50
},
description: {
type: String,
},
images: {
type: Array,
default: []
},
eontinents: {
type: Number,
default: 1
},
views: {
type: Number,
default: 0
}
}, { timestamps: true })
productSchema.index({
title: 'text',
description: 'text'
}, {
weights: {
title: 5,
description: 1
}
})
const Product = mongoose.model('Product', productSchema);
module.exports = { Product }