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()();