cleanup unused constructions, fix tab state for bookmark action

This commit is contained in:
yggverse 2024-11-14 10:51:35 +02:00
parent c511b97d2d
commit fb8f9904d0
8 changed files with 13 additions and 190 deletions

View file

@ -1,7 +1,7 @@
mod bookmark;
mod database;
mod history;
mod identity;
//mod history;
//mod identity;
use bookmark::Bookmark;
use database::Database;
@ -108,8 +108,9 @@ pub fn migrate(tx: &Transaction) -> Result<(), String> {
// Delegate migration to children components
bookmark::migrate(tx)?;
history::migrate(tx)?;
identity::migrate(tx)?;
// @TODO not in use yet
// history::migrate(tx)?;
// identity::migrate(tx)?;
// Success
Ok(())