From 6164d1b596dbddd9ca12f508934339bb802b1a9c Mon Sep 17 00:00:00 2001 From: Jonas Haugland Date: Tue, 15 Mar 2022 14:55:31 +0100 Subject: [PATCH] Added mach tier --- documentation/classDiagram.puml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/documentation/classDiagram.puml b/documentation/classDiagram.puml index 46e7b66..523ffcc 100644 --- a/documentation/classDiagram.puml +++ b/documentation/classDiagram.puml @@ -1,6 +1,7 @@ @startuml Tournament System ' Internal development class diagram ' Describes database fields and object methods required +title Tournament System - Group 1 class Match { *match_id: Integer @@ -8,6 +9,7 @@ class Match { team_ids: Integer[] scores: Integer[] winner_id: Integer + tier: Integer Match constructor(tournament_id: Integer, team_ids: Integer[]) void setScore(team_id: Integer, score: Integer)