Fix DB schema for language models (#133)

This commit is contained in:
Will Chen
2025-05-12 15:14:27 -07:00
committed by GitHub
parent 642895f0ba
commit c63781d7cc
4 changed files with 7 additions and 7 deletions

View File

@@ -82,7 +82,7 @@ export const language_model_providers = sqliteTable(
);
export const language_models = sqliteTable("language_models", {
id: integer("id").primaryKey({ autoIncrement: true }),
id: text("id").primaryKey(),
name: text("name").notNull(),
provider_id: text("provider_id")
.notNull()