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