From 0dff0c91e1280efadc0182a0dbc7017ad9847911 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kasper=20Rynning-T=C3=B8nnesen?= Date: Thu, 26 Mar 2020 16:46:56 +0100 Subject: [PATCH] prelottery wine should have prices as well --- schemas/PreLotteryWine.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/schemas/PreLotteryWine.js b/schemas/PreLotteryWine.js index 7b3ede8..69295b5 100644 --- a/schemas/PreLotteryWine.js +++ b/schemas/PreLotteryWine.js @@ -6,7 +6,9 @@ const PreLotteryWine = new Schema({ vivinoLink: String, rating: Number, id: String, - image: String + image: String, + price: String, + country: String }); module.exports = mongoose.model("PreLotteryWine", PreLotteryWine);