From 4e98dcde418c3c1e6bb92524970bdc7db0bb8919 Mon Sep 17 00:00:00 2001 From: Mathis Kirchner Date: Mon, 9 Mar 2026 21:13:20 +0100 Subject: [PATCH] remove nullable from match name --- 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 545b133..25b0a73 100644 --- a/lib/data/db/tables/match_table.dart +++ b/lib/data/db/tables/match_table.dart @@ -11,7 +11,7 @@ class MatchTable extends Table { TextColumn get groupId => text() .references(GroupTable, #id, onDelete: KeyAction.setNull) .nullable()(); - TextColumn get name => text().nullable()(); + TextColumn get name => text()(); TextColumn get notes => text().nullable()(); DateTimeColumn get createdAt => dateTime()(); DateTimeColumn get endedAt => dateTime().nullable()();