Store match round scores in seperate table #20
Labels
No labels
bug
duplicate
easy-fix
effort: easy
effort: large
effort: medium
enhancement
help wanted
invalid
JS Parity
needs-investigation
osu! Feature
priority: high
priority: low
priority: medium
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: tgpholly/Binato#20
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Right now the scores for all players are squished on to the end of a row in
mp_match_rounds
, this is pretty bad and we have to null any slots that didn't have a user in it. We could instead just store it in it's own table likemp_match_round_scores
and store it bymatch_id
,slot_id
anduser_id
and exclude any slots that didn't have a user in it.