Neue Datenbank Struktur #156

Merged
flixcoo merged 94 commits from feature/88-neue-datenbank-struktur into development 2026-03-04 19:02:03 +00:00
Showing only changes of commit f04d57382c - Show all commits

View File

@@ -24,10 +24,11 @@ class Match {
required this.game,
this.group,
this.players = const [],
required this.notes,
String? notes,
this.winner,
}) : id = id ?? const Uuid().v4(),
createdAt = createdAt ?? clock.now();
createdAt = createdAt ?? clock.now(),
notes = notes ?? '';
@override
String toString() {