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.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/db/schema.ts b/packages/db/schema.ts
index 5c109b76..08dbacab 100644
--- a/packages/db/schema.ts
+++ b/packages/db/schema.ts
@@ -336,6 +336,8 @@ export const bookmarkLists = sqliteTable(
(): AnySQLiteColumn => bookmarkLists.id,
{ onDelete: "set null" },
),
+ // Whoever have access to this token can read the content of this list
+ rssToken: text("rssToken"),
},
(bl) => [
index("bookmarkLists_userId_idx").on(bl.userId),