Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
E
exam_11_back
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
zarina
exam_11_back
Commits
91cb450d
Commit
91cb450d
authored
Jul 22, 2020
by
Алексей Анпилогов
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#2
, добавила модель товара
parent
de45077d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
36 additions
and
0 deletions
+36
-0
Product.js
models/Product.js
+36
-0
No files found.
models/Product.js
View file @
91cb450d
const
mongoose
=
require
(
'mongoose'
);
const
Schema
=
mongoose
.
Schema
;
const
ProductSchema
=
new
Schema
({
author
:
{
type
:
Schema
.
Types
.
ObjectId
,
ref
:
'User'
,
required
:
true
},
category
:
{
type
:
Schema
.
Types
.
ObjectId
,
ref
:
'Category'
,
required
:
true
},
title
:
{
type
:
String
,
required
:
true
},
description
:
{
required
:
true
,
type
:
String
},
image
:
{
required
:
true
,
type
:
String
},
price
:
{
required
:
true
,
type
:
Number
}
});
const
Product
=
mongoose
.
model
(
"Product"
,
ProductChema
);
module
.
exports
=
Product
;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment