fix: add @@schema("platform") to LlmCostUnit enum

Sentry caught this - enums also need @@schema directive with multiSchema enabled.
Without it, Prisma looks for enum in public schema but it's created in platform.
This commit is contained in:
Bentlybro
2026-03-10 14:23:24 +00:00
parent a7d2f81b18
commit 0bfdd74b25

View File

@@ -1343,6 +1343,8 @@ model OAuthRefreshToken {
enum LlmCostUnit {
RUN
TOKENS
@@schema("platform")
}
model LlmProvider {