Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 594 Bytes

Backend Database Structure 57f95efc089348c1a001b2dca03e5d09.md

File metadata and controls

29 lines (19 loc) · 594 Bytes

Backend Database Structure

We use MongoDB for the website backend to store every data.

Collections / Tables

Table: matches

duration teamRank replay
int64 teams.ObjectId[] any

Table: teams

name members primarySubmission
string members.ObjectId[] submissions.ObjectId

Table: members

name email team
string string teams.ObjectId

Table: submissions

team user file time
teams.ObjectId user.ObjectID string DateTime