From 16f0830f2cf4dfbbcedd5b75b5084d435f8da9bf Mon Sep 17 00:00:00 2001 From: natsee Date: Thu, 25 Jan 2024 15:19:46 +0100 Subject: [PATCH] Fix conflict in database-migration --- backend/src/api/database-migration.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/backend/src/api/database-migration.ts b/backend/src/api/database-migration.ts index 16dca53e3..b84efdd7c 100644 --- a/backend/src/api/database-migration.ts +++ b/backend/src/api/database-migration.ts @@ -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); + } } /**