const mongoose = require("mongoose"); const Schema = mongoose.Schema; const Highscore = new Schema({ name: String, Wins: [ { color: String, date: Date, wine: { type: Schema.Types.ObjectId, ref: "Wine" } } ] }); module.exports = Highscore;