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