Skip to content

Commit

Permalink
Added table for bookmarks
Browse files Browse the repository at this point in the history
  • Loading branch information
checkroom committed Dec 19, 2024
1 parent 5d4e199 commit d9d404e
Show file tree
Hide file tree
Showing 8 changed files with 612 additions and 15 deletions.
19 changes: 19 additions & 0 deletions commons/migrations/0001_silent_lester.sql
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
);
Loading

0 comments on commit d9d404e

Please sign in to comment.