Add missing db schema incrementation

This commit is contained in:
nymkappa 2023-02-23 14:52:29 +09:00
parent 3f95d094a3
commit 2d03332333
No known key found for this signature in database
GPG Key ID: E155910B16E8BD04

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