This commit is contained in:
Kasper Rynning-Tønnesen
2020-01-31 10:52:13 +01:00
parent 15b9a46cda
commit 6a982610c8
4 changed files with 77 additions and 40 deletions

View File

@@ -5,7 +5,9 @@ const Wine = new Schema({
name: String,
vivinoLink: String,
rating: Number,
occurences: Number
occurences: Number,
id: String,
image: String
});
module.exports = mongoose.model("Wine", Wine);