Enable transactions again to fix web

This commit is contained in:
Christian Pauly 2020-08-03 13:28:30 +00:00
parent f6a253de88
commit d4a7345b8a
1 changed files with 0 additions and 7 deletions

View File

@ -22,13 +22,6 @@ class Database extends _$Database {
int get maxFileSize => 1 * 1024 * 1024;
// moor transactions are sometimes rather weird and freeze. Until there is a
// proper fix in moor we override that there aren't actually using transactions
@override
Future<T> transaction<T>(Future<T> Function() action) async {
return action();
}
@override
MigrationStrategy get migration => MigrationStrategy(
onCreate: (Migrator m) {