Advertisement
Guest User

Untitled

a guest
Jul 16th, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const mongoose = require('mongoose');
  2. const Schema = mongoose.Schema;
  3.  
  4. const PrdocutSchema = new Schema({
  5.     category: String,
  6.     name: String,
  7.     price: Number,
  8.     cover: String
  9. });
  10.  
  11.  
  12. module.exports = mongoose.model('Product', PrdocutSchema);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement