Skip to content

Commit 40ca65c

Browse files
author
Your Name
committed
this is webapp
0 parents  commit 40ca65c

File tree

7 files changed

+1744
-0
lines changed

7 files changed

+1744
-0
lines changed

jwellerydemo/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

jwellerydemo/jwellery.js

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
const mongoose =require("mongoose");
2+
const Schema = mongoose.Schema({
3+
id: Number,
4+
name : String,
5+
price : Number,
6+
description : String,
7+
groosweight : Number,
8+
netweight : Number,
9+
image : String
10+
});
11+
12+
module.exports=mongoose.model('Jwellery',Schema);

0 commit comments

Comments
 (0)