diff options
| author | Mohamed Bassem <me@mbassem.com> | 2025-07-01 22:51:59 +0000 |
|---|---|---|
| committer | Mohamed Bassem <me@mbassem.com> | 2025-07-04 16:27:29 +0000 |
| commit | 545cac1967f6882780021407a474690fea3f11ed (patch) | |
| tree | c30ea2cbc05d061e6726df97baae946f3d6db920 /packages/db/schema.ts | |
| parent | 73a0c951375d38d84cb1eaf5253b558c35882288 (diff) | |
| download | karakeep-545cac1967f6882780021407a474690fea3f11ed.tar.zst | |
feat: Add per user bookmark count quota
Diffstat (limited to 'packages/db/schema.ts')
| -rw-r--r-- | packages/db/schema.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/db/schema.ts b/packages/db/schema.ts index e79bd2c9..b9b6120f 100644 --- a/packages/db/schema.ts +++ b/packages/db/schema.ts @@ -38,6 +38,7 @@ export const users = sqliteTable("user", { password: text("password"), salt: text("salt").notNull().default(""), role: text("role", { enum: ["admin", "user"] }).default("user"), + bookmarkQuota: integer("bookmarkQuota"), }); export const accounts = sqliteTable( |
