Skip to content

Commit

Permalink
feat(storage): bump database version (#6825)
Browse files Browse the repository at this point in the history
  • Loading branch information
shekhirin committed Feb 27, 2024
1 parent f88f023 commit 20b4365
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/storage/db/src/version.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ use std::{
/// The name of the file that contains the version of the database.
pub const DB_VERSION_FILE_NAME: &str = "database.version";
/// The version of the database stored in the [DB_VERSION_FILE_NAME] file in the same directory as
/// database. Example: `1`.
pub const DB_VERSION: u64 = 1;
/// database.
pub const DB_VERSION: u64 = 2;

/// Error when checking a database version using [check_db_version_file]
#[derive(thiserror::Error, Debug)]
Expand Down

0 comments on commit 20b4365

Please sign in to comment.