From 6c2dc8c4ac615c7781a68739a820836730e43018 Mon Sep 17 00:00:00 2001 From: yggverse Date: Sun, 8 Sep 2024 22:24:02 +0300 Subject: [PATCH] update table name --- src/app/browser/main/tab.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/app/browser/main/tab.cpp b/src/app/browser/main/tab.cpp index e0c7c68c..627e171d 100644 --- a/src/app/browser/main/tab.cpp +++ b/src/app/browser/main/tab.cpp @@ -16,7 +16,7 @@ Tab::Tab( // Init database db.exec( R"SQL( - CREATE TABLE IF NOT EXISTS `app_browser_tab` + CREATE TABLE IF NOT EXISTS `app_browser_main_tab` ( `id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `time` INTEGER NOT NULL, @@ -46,6 +46,8 @@ Tab::Tab( action__refresh->activate(); } ); + + // @TODO restore session from DB } // Actions