fix: add storage_backend and storage_url columns to schema.prisma files (#17936)
- Updated litellm/proxy/schema.prisma to include storage_backend and storage_url columns - Updated litellm-proxy-extras/litellm_proxy_extras/schema.prisma to include storage_backend and storage_url columns - Fixes database schema mismatch causing 'storage_backend column does not exist' errors - Keeps all schema files in sync with root schema.prisma
This commit is contained in:
parent
1b28ea7728
commit
425b8400b0
@ -602,6 +602,8 @@ model LiteLLM_ManagedFileTable {
|
||||
file_object Json? // Stores the OpenAIFileObject
|
||||
model_mappings Json
|
||||
flat_model_file_ids String[] @default([]) // Flat list of model file id's - for faster querying of model id -> unified file id
|
||||
storage_backend String? // Storage backend name (e.g., "azure_storage", "gcs", "default")
|
||||
storage_url String? // The actual storage URL where the file is stored
|
||||
created_at DateTime @default(now())
|
||||
created_by String?
|
||||
updated_at DateTime @updatedAt
|
||||
|
||||
@ -602,6 +602,8 @@ model LiteLLM_ManagedFileTable {
|
||||
file_object Json? // Stores the OpenAIFileObject
|
||||
model_mappings Json
|
||||
flat_model_file_ids String[] @default([]) // Flat list of model file id's - for faster querying of model id -> unified file id
|
||||
storage_backend String? // Storage backend name (e.g., "azure_storage", "gcs", "default")
|
||||
storage_url String? // The actual storage URL where the file is stored
|
||||
created_at DateTime @default(now())
|
||||
created_by String?
|
||||
updated_at DateTime @updatedAt
|
||||
|
||||
Loading…
Reference in New Issue
Block a user