Score implementation ergänzen #196

Merged
flixcoo merged 28 commits from feature/191-score-implementation-ergaenzen into development 2026-04-14 16:12:05 +00:00
Showing only changes of commit 80672343b9 - Show all commits

View File

@@ -49,7 +49,11 @@ class ScoreDao extends DatabaseAccessor<AppDatabase> with _$ScoreDaoMixin {
.toList();
await batch((batch) {
batch.insertAll(scoreTable, entries, mode: InsertMode.insertOrReplace);
batch.insertAll(
scoreEntryTable,
entries,
mode: InsertMode.insertOrReplace,
);
});
}