aboutsummaryrefslogtreecommitdiffstats
path: root/packages/db/schema.ts
diff options
context:
space:
mode:
authorekambains <bainseka@sheridancollege.ca>2025-04-12 15:11:28 -0400
committerGitHub <noreply@github.com>2025-04-12 20:11:28 +0100
commita39cd5f3c0a3e287652f945d203facab413b5b65 (patch)
treefb47ba7f7180604d1c023361b65340b0096a6096 /packages/db/schema.ts
parent56e679565741a501fcc73f2ea4f417c111c65c1e (diff)
downloadkarakeep-a39cd5f3c0a3e287652f945d203facab413b5b65.tar.zst
feat(web): Optionally add short description to lists (#1225)
* feat(web): Optionally add short description to lists * regenerate openapi spec --------- Co-authored-by: Mohamed Bassem <me@mbassem.com>
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 d08f0698..d3e97098 100644
--- a/packages/db/schema.ts
+++ b/packages/db/schema.ts
@@ -317,6 +317,7 @@ export const bookmarkLists = sqliteTable(
.primaryKey()
.$defaultFn(() => createId()),
name: text("name").notNull(),
+ description: text("description"),
icon: text("icon").notNull(),
createdAt: createdAtField(),
userId: text("userId")