Fix conflict in database-migration

This commit is contained in:
natsee 2024-01-25 15:19:46 +01:00
parent b6d2008e97
commit 16f0830f2c
No known key found for this signature in database
GPG Key ID: 233CF3150A89BED8

View File

@ -578,6 +578,8 @@ class DatabaseMigration {
// Create the federation_txos table that uses the federation_addresses table as a foreign key
await this.$executeQuery(this.getCreateFederationTxosTableQuery(), await this.$checkIfTableExists('federation_txos'));
await this.$executeQuery(`INSERT INTO state VALUES('last_bitcoin_block_audit', 0, NULL);`);
await this.updateToSchemaVersion(68);
}
}
/**