aboutsummaryrefslogtreecommitdiffstats
path: root/packages/db/schema.ts
diff options
context:
space:
mode:
authorMohamedBassem <me@mbassem.com>2024-04-19 20:01:51 +0100
committerMohamed Bassem <me@mbassem.com>2024-04-20 00:05:31 +0100
commit4402e6f04170cbb0613d35fe94471162253e91b2 (patch)
tree696f6511cefa7d1c6bc3a1f8bc2de755870310cc /packages/db/schema.ts
parentb4a13ce3d92ee505124fc98804935c1122978550 (diff)
downloadkarakeep-4402e6f04170cbb0613d35fe94471162253e91b2.tar.zst
feature: Download images and screenshots
Diffstat (limited to 'packages/db/schema.ts')
-rw-r--r--packages/db/schema.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/db/schema.ts b/packages/db/schema.ts
index 037be814..e323c25f 100644
--- a/packages/db/schema.ts
+++ b/packages/db/schema.ts
@@ -141,6 +141,8 @@ export const bookmarkLinks = sqliteTable("bookmarkLinks", {
favicon: text("favicon"),
content: text("content"),
htmlContent: text("htmlContent"),
+ screenshotAssetId: text("screenshotAssetId"),
+ imageAssetId: text("imageAssetId"),
crawledAt: integer("crawledAt", { mode: "timestamp" }),
crawlStatus: text("crawlStatus", {
enum: ["pending", "failure", "success"],