-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
checkroom
committed
Dec 19, 2024
1 parent
5d4e199
commit d9d404e
Showing
8 changed files
with
612 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
CREATE TABLE `bookmarks` ( | ||
`id` integer PRIMARY KEY AUTOINCREMENT NOT NULL, | ||
`curated` integer NOT NULL, | ||
`notes` text, | ||
`tags` text, | ||
`timestamp_added` integer NOT NULL, | ||
`timestamp_visited` integer NOT NULL | ||
); | ||
--> statement-breakpoint | ||
CREATE TABLE `logs` ( | ||
`id` integer PRIMARY KEY AUTOINCREMENT NOT NULL, | ||
`session` integer NOT NULL, | ||
`level` integer NOT NULL, | ||
`type` integer NOT NULL, | ||
`what` text, | ||
`root` text, | ||
`path` text, | ||
`timestamp` integer NOT NULL | ||
); |
Oops, something went wrong.