|
|
|
@ -28,6 +28,14 @@ const players = new Schema({
|
|
|
|
|
type: String,
|
|
|
|
|
required: true,
|
|
|
|
|
},
|
|
|
|
|
name_arabic: {
|
|
|
|
|
type: String,
|
|
|
|
|
required: true,
|
|
|
|
|
},
|
|
|
|
|
name_jpn: {
|
|
|
|
|
type: String,
|
|
|
|
|
required: true,
|
|
|
|
|
},
|
|
|
|
|
account: {
|
|
|
|
|
type: String,
|
|
|
|
|
required: true,
|
|
|
|
@ -39,6 +47,14 @@ const rosters = new Schema({
|
|
|
|
|
type: String,
|
|
|
|
|
required: true,
|
|
|
|
|
},
|
|
|
|
|
name_arabic: {
|
|
|
|
|
type: String,
|
|
|
|
|
required: true,
|
|
|
|
|
},
|
|
|
|
|
name_jpn: {
|
|
|
|
|
type: String,
|
|
|
|
|
required: true,
|
|
|
|
|
},
|
|
|
|
|
logo: {
|
|
|
|
|
type: String,
|
|
|
|
|
required: true,
|
|
|
|
@ -53,4 +69,4 @@ const rosters = new Schema({
|
|
|
|
|
|
|
|
|
|
const Roster = model('Rosters', rosters)
|
|
|
|
|
|
|
|
|
|
module.exports = Roster
|
|
|
|
|
module.exports = Roster
|
|
|
|
|