mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 09:05:27 +00:00
add missed column
This commit is contained in:
parent
98437884e1
commit
2830be6a5b
4 changed files with 5 additions and 4 deletions
|
|
@ -355,7 +355,7 @@ int Tab::DB::SESSION::init(
|
|||
R"SQL(
|
||||
CREATE TABLE IF NOT EXISTS `app_browser_main_tab__session`
|
||||
(
|
||||
`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
|
||||
`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `app_browser_main__session_id` INTEGER NOT NULL,
|
||||
`time` INTEGER NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
`page_number` INTEGER NOT NULL,
|
||||
`is_current` INTEGER NOT NULL
|
||||
|
|
|
|||
|
|
@ -33,6 +33,7 @@ namespace app::browser::main
|
|||
enum
|
||||
{
|
||||
ID,
|
||||
APP_BROWSER_MAIN__SESSION_ID,
|
||||
TIME,
|
||||
PAGE_NUMBER,
|
||||
IS_CURRENT
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue