Added missing methods and implemented tests

This commit is contained in:
2025-11-12 20:02:01 +01:00
parent 3f5a840675
commit 93a4ccaee0
11 changed files with 402 additions and 41 deletions

View File

@@ -5,6 +5,6 @@ part of 'player_game_dao.dart';
// ignore_for_file: type=lint
mixin _$PlayerGameDaoMixin on DatabaseAccessor<AppDatabase> {
$PlayerTableTable get playerTable => attachedDatabase.playerTable;
$GroupTableTable get groupTable => attachedDatabase.groupTable;
$GameTableTable get gameTable => attachedDatabase.gameTable;
$PlayerGameTableTable get playerGameTable => attachedDatabase.playerGameTable;
}