diff options
| author | Mohamed Bassem <me@mbassem.com> | 2025-07-06 15:54:49 +0000 |
|---|---|---|
| committer | Mohamed Bassem <me@mbassem.com> | 2025-07-06 16:32:35 +0000 |
| commit | 384432d31e7bee6bf35d8af6b7165410303ffda4 (patch) | |
| tree | ddb845aa8dacbf00151ee3fda8a233d0620d6ab1 /packages/db/schema.ts | |
| parent | 47624547f8cb352426d597537c11e7a4550aa91e (diff) | |
| download | karakeep-384432d31e7bee6bf35d8af6b7165410303ffda4.tar.zst | |
feat: Add per user storage 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 b9b6120f..e3275d85 100644 --- a/packages/db/schema.ts +++ b/packages/db/schema.ts @@ -39,6 +39,7 @@ export const users = sqliteTable("user", { salt: text("salt").notNull().default(""), role: text("role", { enum: ["admin", "user"] }).default("user"), bookmarkQuota: integer("bookmarkQuota"), + storageQuota: integer("storageQuota"), }); export const accounts = sqliteTable( |
