Added more data from winner

This commit is contained in:
Kasper Rynning-Tønnesen
2020-03-26 16:08:24 +01:00
parent 56352a85fb
commit 4060b7409e
2 changed files with 12 additions and 4 deletions

View File

@@ -4,7 +4,11 @@ const Schema = mongoose.Schema;
const VirtualWinner = new Schema({
name: String,
phoneNumber: String,
color: String
color: String,
green: Number,
blue: Number,
red: Number,
yellow: Number
});
module.exports = mongoose.model("VirtualWinner", VirtualWinner);