15 lines
301 B
JavaScript
15 lines
301 B
JavaScript
const mongoose = require("mongoose");
|
|
const Schema = mongoose.Schema;
|
|
|
|
const PreLotteryWine = new Schema({
|
|
name: String,
|
|
vivinoLink: String,
|
|
rating: Number,
|
|
id: String,
|
|
image: String,
|
|
price: String,
|
|
country: String
|
|
});
|
|
|
|
module.exports = mongoose.model("PreLotteryWine", PreLotteryWine);
|