blob: bb28ba3d1f486679fe0e2249376a780e3fa39fa6 (
plain) (
blame)
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
|
const mongoose = require('mongoose');
const categorySchema = new mongoose.Schema(
{
name: {
type: String,
required: [true, 'Category name is required'],
trim: true,
unique: true
},
description: {
type: String,
trim: true
},
image: {
type: String
},
active: {
type: Boolean,
default: true
},
displayOrder: {
type: Number,
default: 0
}
},
{
timestamps: true
}
);
const Category = mongoose.model('Category', categorySchema);
module.exports = Category;
|