aboutsummaryrefslogtreecommitdiffstats
path: root/packages/db/schema.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/db/schema.ts')
-rw-r--r--packages/db/schema.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/db/schema.ts b/packages/db/schema.ts
index ae694fc8..7dab7401 100644
--- a/packages/db/schema.ts
+++ b/packages/db/schema.ts
@@ -148,6 +148,10 @@ export const bookmarkLinks = sqliteTable(
// Crawled info
title: text("title"),
description: text("description"),
+ author: text("author"),
+ publisher: text("publisher"),
+ datePublished: integer("datePublished", { mode: "timestamp" }),
+ dateModified: integer("dateModified", { mode: "timestamp" }),
imageUrl: text("imageUrl"),
favicon: text("favicon"),
content: text("content"),