#2, добавила модель категории

parent cbf239e9
const mongoose = require("mongoose");
const Schema = mongoose.Schema;
const CategorySchema = new Schema({
title: {
type: String,
required: true,
unique: true
},
});
const Category = mongoose.model("Category", CategorySchema);
module.exports = Category;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment