test(native-worker): add Android regression gates

This commit is contained in:
zarzet
2026-07-24 12:16:41 +07:00
parent 0d8bc7b269
commit 89dcef8ffd
7 changed files with 273 additions and 5 deletions
+2 -1
View File
@@ -65,6 +65,7 @@ class HistoryBatchLookupRequest {
}
class HistoryDatabase {
static const int schemaVersion = 10;
static final HistoryDatabase instance = HistoryDatabase._init();
static Database? _database;
@@ -74,7 +75,7 @@ class HistoryDatabase {
if (_database != null) return _database!;
_database = await sqlite.openAppDatabase(
'history.db',
version: 10,
version: schemaVersion,
onCreate: _createDB,
onUpgrade: _upgradeDB,
);