From 56a36933e1542a35ecad5340181be2d12b9235f2 Mon Sep 17 00:00:00 2001 From: mokurin000 <1348292515a@gmail.com> Date: Sun, 3 Aug 2025 18:11:27 +0800 Subject: [PATCH] fix: create records table --- sdgb-cli/src/cache/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/sdgb-cli/src/cache/mod.rs b/sdgb-cli/src/cache/mod.rs index 697f02e..8488d26 100644 --- a/sdgb-cli/src/cache/mod.rs +++ b/sdgb-cli/src/cache/mod.rs @@ -41,6 +41,7 @@ pub fn init_db() -> Result<(), redb::Error> { let write_txn = DATABASE.begin_write()?; write_txn.open_table(PLAYERS)?; write_txn.open_table(PLAYER_B50)?; + write_txn.open_table(PLAYER_RECORD)?; write_txn.commit()?; Ok(()) }