12345678910111213 |
- const mongoose = require('mongoose')
- const Schema = mongoose.Schema
- const ReviewSchema = new Schema({
- headline: String,
- body: String,
- rating: Number,
- photo: String,
- productID: { type:Schema.Types.ObjectId, ref: 'Product' },
- user: { type:Schema.Types.ObjectId, ref: 'User' },
- })
- module.exports = mongoose.model('Review', ReviewSchema)
|