11 lines
234 B
JavaScript
11 lines
234 B
JavaScript
const mongoose = require("mongoose");
|
|
const Schema = mongoose.Schema;
|
|
|
|
const PreLotteryWine = new Schema({
|
|
name: String,
|
|
vivinoLink: String,
|
|
rating: Number
|
|
});
|
|
|
|
module.exports = mongoose.model("PreLotteryWine", PreLotteryWine);
|