fix: create records table

This commit is contained in:
mokurin000
2025-08-03 18:11:27 +08:00
parent 497c67ff89
commit 56a36933e1

View File

@@ -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(())
}