fix: remove CREATE SCHEMA to match CI environment

CI uses schema "public" as default (not "platform"), so creating
a platform schema then tables without prefix puts tables in public
but Prisma looks in platform.

Existing migrations don't create schema - they rely on connection
string's default. Remove CREATE SCHEMA IF NOT EXISTS to match.
This commit is contained in:
Bentlybro
2026-03-10 15:57:26 +00:00
parent 4fdf89c3be
commit ded002a406

View File

@@ -1,6 +1,3 @@
-- CreateSchema (idempotent - safe if already exists)
CREATE SCHEMA IF NOT EXISTS "platform";
-- CreateEnum
CREATE TYPE "LlmCostUnit" AS ENUM ('RUN', 'TOKENS');