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.ts12
1 files changed, 12 insertions, 0 deletions
diff --git a/packages/db/schema.ts b/packages/db/schema.ts
index ae7c3103..8b0385c3 100644
--- a/packages/db/schema.ts
+++ b/packages/db/schema.ts
@@ -83,6 +83,18 @@ export const users = sqliteTable("user", {
autoSummarizationEnabled: integer("autoSummarizationEnabled", {
mode: "boolean",
}),
+ tagStyle: text("tagStyle", {
+ enum: [
+ "lowercase-hyphens",
+ "lowercase-spaces",
+ "lowercase-underscores",
+ "titlecase-spaces",
+ "titlecase-hyphens",
+ "camelCase",
+ "as-generated",
+ ],
+ }).default("lowercase-hyphens"),
+ inferredTagLang: text("inferredTagLang"),
});
export const accounts = sqliteTable(