From 8e4cff19d1b62ae40fb76f31c3a8b6aa5395bca2 Mon Sep 17 00:00:00 2001 From: gelbeinhalb Date: Mon, 23 Feb 2026 19:29:20 +0100 Subject: [PATCH] change comment --- lib/data/db/tables/match_table.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/data/db/tables/match_table.dart b/lib/data/db/tables/match_table.dart index 9ed27b7..191e72c 100644 --- a/lib/data/db/tables/match_table.dart +++ b/lib/data/db/tables/match_table.dart @@ -6,7 +6,7 @@ class MatchTable extends Table { TextColumn get id => text()(); TextColumn get gameId => text().references(GameTable, #id, onDelete: KeyAction.cascade)(); - // Nullable if not part of a group + // Nullable if there is no group associated with the match TextColumn get groupId => text().references(GroupTable, #id, onDelete: KeyAction.cascade).nullable()(); TextColumn get name => text().nullable()();