Completed daos, added basic GameTable & GameDao

This commit is contained in:
2025-11-08 17:09:02 +01:00
parent 4503574443
commit b03979b0c6
13 changed files with 984 additions and 116 deletions

View File

@@ -4,6 +4,8 @@ part of 'player_group_dao.dart';
// ignore_for_file: type=lint
mixin _$PlayerGroupDaoMixin on DatabaseAccessor<AppDatabase> {
$PlayerTableTable get playerTable => attachedDatabase.playerTable;
$GroupTableTable get groupTable => attachedDatabase.groupTable;
$PlayerGroupTableTable get playerGroupTable =>
attachedDatabase.playerGroupTable;
}