From 169cd29f8ffcecb58add4bb452437f15b496d009 Mon Sep 17 00:00:00 2001 From: Ishaan Jaffer Date: Wed, 1 Apr 2026 10:27:00 -0700 Subject: [PATCH] fix: add key_rotation_email to root schema.prisma so prisma generate includes the field --- schema.prisma | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/schema.prisma b/schema.prisma index 46be6b31e1f..9e5d459bd7c 100644 --- a/schema.prisma +++ b/schema.prisma @@ -387,6 +387,7 @@ model LiteLLM_VerificationToken { rotation_interval String? // How often to rotate (e.g., "30d", "90d") last_rotation_at DateTime? // When this key was last rotated key_rotation_at DateTime? // When this key should next be rotated + key_rotation_email String? // Override email for rotation notifications (useful for service accounts) litellm_budget_table LiteLLM_BudgetTable? @relation(fields: [budget_id], references: [budget_id]) litellm_organization_table LiteLLM_OrganizationTable? @relation(fields: [organization_id], references: [organization_id]) litellm_project_table LiteLLM_ProjectTable? @relation(fields: [project_id], references: [project_id]) @@ -480,7 +481,8 @@ model LiteLLM_DeletedVerificationToken { rotation_interval String? last_rotation_at DateTime? key_rotation_at DateTime? - + key_rotation_email String? + // Deletion metadata deleted_at DateTime @default(now()) @map("deleted_at") deleted_by String? @map("deleted_by") // User who deleted the key