Merge pull request #4877 from mempool/nymkappa/truncate-hashrate-difficulty

[migration] re-index hashrates and difficulty_adjustments
This commit is contained in:
wiz
2024-04-04 11:05:16 +09:00
committed by GitHub

View File

@@ -652,6 +652,10 @@ class DatabaseMigration {
await this.$executeQuery('ALTER TABLE `prices` ADD `THB` float DEFAULT "-1"');
await this.$executeQuery('ALTER TABLE `prices` ADD `TRY` float DEFAULT "-1"');
await this.$executeQuery('ALTER TABLE `prices` ADD `ZAR` float DEFAULT "-1"');
await this.$executeQuery('TRUNCATE hashrates');
await this.$executeQuery('TRUNCATE difficulty_adjustments');
await this.updateToSchemaVersion(75);
}