From 6be646ca1153301c24f030f3190d9941d3f6b285 Mon Sep 17 00:00:00 2001 From: Michael Sproul Date: Mon, 30 Jun 2025 15:52:28 +1000 Subject: [PATCH] Bump DB schema to v25 (#7666) When we removed the eth1 data, I wrote a v25 schema upgrade to delete the data on disk: - https://github.com/sigp/lighthouse/pull/7133 However, I forgot to update the current schema version, so this change was never actioned. This PR updates the current schema version to v25 so that the migration runs. --- beacon_node/store/src/metadata.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beacon_node/store/src/metadata.rs b/beacon_node/store/src/metadata.rs index bc9d708e14..63cb4661cd 100644 --- a/beacon_node/store/src/metadata.rs +++ b/beacon_node/store/src/metadata.rs @@ -4,7 +4,7 @@ use ssz::{Decode, Encode}; use ssz_derive::{Decode, Encode}; use types::{Hash256, Slot}; -pub const CURRENT_SCHEMA_VERSION: SchemaVersion = SchemaVersion(24); +pub const CURRENT_SCHEMA_VERSION: SchemaVersion = SchemaVersion(25); // All the keys that get stored under the `BeaconMeta` column. //