Add missing db schema incrementation

This commit is contained in:
nymkappa 2023-02-23 14:52:29 +09:00
parent 656fa6fa16
commit 1000e30b7f

View File

@ -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);
}
}