diff --git a/lib/core/database/app_database.dart b/lib/core/database/app_database.dart index 4cf0f5be..dc052037 100644 --- a/lib/core/database/app_database.dart +++ b/lib/core/database/app_database.dart @@ -49,7 +49,12 @@ class AppDatabase extends _$AppDatabase with InfraLogger { await _prePopulateGeoAssets(); }, from3To4: (m, schema) async { - await m.addColumn(profileEntries, profileEntries.testUrl); + // TODO: check if column exists, if not then add column + try { + await m.addColumn(profileEntries, profileEntries.testUrl); + } on Exception catch (err) { + loggy.debug(err); + } }, ), beforeOpen: (details) async {