diff options
| author | Ahmad Mujahid <55625580+AhmadMuj@users.noreply.github.com> | 2024-04-12 00:52:53 +0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-11 23:52:53 +0300 |
| commit | 95cf8f47300d6eb6efe36d44bcab0f44a8e27585 (patch) | |
| tree | dcc64d69e11c80d4b84e977e5b27d135a8d28918 /packages/db/schema.ts | |
| parent | 238c2967b269ca0f66d8e759c6a0234107e1fd1e (diff) | |
| download | karakeep-95cf8f47300d6eb6efe36d44bcab0f44a8e27585.tar.zst | |
feature: Recrawl failed links from admin UI (#95)
* feature: Retry failed crawling URLs
* fix: Enhancing visuals and some minor changes.
Diffstat (limited to 'packages/db/schema.ts')
| -rw-r--r-- | packages/db/schema.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/packages/db/schema.ts b/packages/db/schema.ts index c43b4dc8..6a541a0a 100644 --- a/packages/db/schema.ts +++ b/packages/db/schema.ts @@ -140,6 +140,9 @@ export const bookmarkLinks = sqliteTable("bookmarkLinks", { content: text("content"), htmlContent: text("htmlContent"), crawledAt: integer("crawledAt", { mode: "timestamp" }), + crawlStatus: text("crawlStatus", { + enum: ["pending", "failure", "success"], + }).default("pending"), }); export const bookmarkTexts = sqliteTable("bookmarkTexts", { |
