This commit is contained in:
Johnathon Slightham
2021-09-07 12:53:34 -04:00
parent 57b9827e64
commit 71017cc5b6
34 changed files with 27214 additions and 2626 deletions

View File

@@ -5,6 +5,15 @@ const Schema = mongoose.Schema;
let Player = new Schema({
name: {
type: String
},
session: {
type: String
},
colour: {
type: Number
},
score: {
type: Number
}
}, {
collection: 'players'