diff --git a/packages/store/migrations/index.ts b/packages/store/migrations/index.ts index de2d98ee5..49bf11e34 100644 --- a/packages/store/migrations/index.ts +++ b/packages/store/migrations/index.ts @@ -32,9 +32,8 @@ export const migrateDatabase = async ( const storedVersion = setting?.config?.storageVersion || 0; const latestVersion = getLatestMigrationVersion(); - logger.info(storedVersion, latestVersion); - if (storedVersion < latestVersion) { + logger.info(`migrating from ${storedVersion} to ${latestVersion}`); const newerVersionFilter = (i: Migration) => i.version > storedVersion && (i.scope === 'all' || i.scope === scope);