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.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/db/schema.ts b/packages/db/schema.ts
index 6a541a0a..6a7128c0 100644
--- a/packages/db/schema.ts
+++ b/packages/db/schema.ts
@@ -104,6 +104,7 @@ export const bookmarks = sqliteTable(
.primaryKey()
.$defaultFn(() => createId()),
createdAt: createdAtField(),
+ title: text("title"),
archived: integer("archived", { mode: "boolean" }).notNull().default(false),
favourited: integer("favourited", { mode: "boolean" })
.notNull()