diff --git a/backend/src/api/database-migration.ts b/backend/src/api/database-migration.ts index 7b56ce361..4dc59a22d 100644 --- a/backend/src/api/database-migration.ts +++ b/backend/src/api/database-migration.ts @@ -479,6 +479,7 @@ class DatabaseMigration { this.uniqueLog(logger.notice, `'blocks_prices' table has been truncated`); await this.$executeQuery(`TRUNCATE prices`); await this.$executeQuery(`TRUNCATE blocks_prices`); + await this.updateToSchemaVersion(54); } }