From 16f415ad7455972ae3995beb80151617805f0523 Mon Sep 17 00:00:00 2001 From: Julio Quinteros Date: Thu, 5 Mar 2026 07:00:11 -0300 Subject: [PATCH] fix(schema): remove duplicate spec_path field in LiteLLM_MCPServerTable PR #22850 (BYOK MCP servers) accidentally re-declared spec_path which was already added by PR #22820, causing Prisma schema validation to fail with error P1012 "Field is already defined". Co-Authored-By: Claude Sonnet 4.6 --- litellm/proxy/schema.prisma | 1 - 1 file changed, 1 deletion(-) diff --git a/litellm/proxy/schema.prisma b/litellm/proxy/schema.prisma index 43972724ec..8060058536 100644 --- a/litellm/proxy/schema.prisma +++ b/litellm/proxy/schema.prisma @@ -305,7 +305,6 @@ model LiteLLM_MCPServerTable { registration_url String? allow_all_keys Boolean @default(false) available_on_public_internet Boolean @default(true) - spec_path String? is_byok Boolean @default(false) byok_description String[] @default([]) byok_api_key_help_url String?