From afbcb6d961a3ed16873fb1b6703bb41ced6c3281 Mon Sep 17 00:00:00 2001 From: Alexey Shekhirin Date: Tue, 27 Feb 2024 15:16:09 +0000 Subject: [PATCH] feat(storage): bump database version --- crates/storage/db/src/version.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/storage/db/src/version.rs b/crates/storage/db/src/version.rs index 63357b8e9fba..c7cebaed8a10 100644 --- a/crates/storage/db/src/version.rs +++ b/crates/storage/db/src/version.rs @@ -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)]