mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-14 23:21:35 +00:00
fix: add missing spec_path column to root and proxy-extras schema files
PR #21575 added spec_path to litellm/proxy/schema.prisma but missed the root schema.prisma and litellm-proxy-extras schema. This caused "Could not find field spec_path" errors when creating OpenAPI-based MCP servers. Made-with: Cursor
This commit is contained in:
parent
b4cd5879fb
commit
7e2c1a5985
3 changed files with 6 additions and 3 deletions
|
|
@ -277,8 +277,9 @@ model LiteLLM_MCPServerTable {
|
|||
alias String?
|
||||
description String?
|
||||
url String?
|
||||
spec_path String?
|
||||
transport String @default("sse")
|
||||
auth_type String?
|
||||
auth_type String?
|
||||
credentials Json? @default("{}")
|
||||
created_at DateTime? @default(now()) @map("created_at")
|
||||
created_by String?
|
||||
|
|
|
|||
|
|
@ -277,8 +277,9 @@ model LiteLLM_MCPServerTable {
|
|||
alias String?
|
||||
description String?
|
||||
url String?
|
||||
spec_path String?
|
||||
transport String @default("sse")
|
||||
auth_type String?
|
||||
auth_type String?
|
||||
credentials Json? @default("{}")
|
||||
created_at DateTime? @default(now()) @map("created_at")
|
||||
created_by String?
|
||||
|
|
|
|||
|
|
@ -277,8 +277,9 @@ model LiteLLM_MCPServerTable {
|
|||
alias String?
|
||||
description String?
|
||||
url String?
|
||||
spec_path String?
|
||||
transport String @default("sse")
|
||||
auth_type String?
|
||||
auth_type String?
|
||||
credentials Json? @default("{}")
|
||||
created_at DateTime? @default(now()) @map("created_at")
|
||||
created_by String?
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue