diff options
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( |
