Skip to content

Commit 6be646c

Browse files
Bump DB schema to v25 (#7666)
When we removed the eth1 data, I wrote a v25 schema upgrade to delete the data on disk: - #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.
1 parent 2d759f7 commit 6be646c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

beacon_node/store/src/metadata.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use ssz::{Decode, Encode};
44
use ssz_derive::{Decode, Encode};
55
use types::{Hash256, Slot};
66

7-
pub const CURRENT_SCHEMA_VERSION: SchemaVersion = SchemaVersion(24);
7+
pub const CURRENT_SCHEMA_VERSION: SchemaVersion = SchemaVersion(25);
88

99
// All the keys that get stored under the `BeaconMeta` column.
1010
//

0 commit comments

Comments
 (0)