samoulla-backend / models /favoriteModel.js
Samoulla Sync Bot
Auto-deploy Samoulla Backend: 8574a71f0fc617aeb1ce9b5e35dac24c5319a12a
59c49c1
raw
history blame contribute delete
410 Bytes
const mongoose = require("mongoose");
const favoriteSchema = new mongoose.Schema(
{
user: {
type: mongoose.Schema.Types.ObjectId,
ref: "User",
required: true,
unique: true
},
products: [
{
type: mongoose.Schema.Types.ObjectId,
ref: "Product"
}
]
},
{ timestamps: true }
);
module.exports = mongoose.model("Favorite", favoriteSchema);