mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-04-08 03:00:28 -04:00
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:
@@ -1,6 +1,3 @@
|
||||
-- CreateSchema (idempotent - safe if already exists)
|
||||
CREATE SCHEMA IF NOT EXISTS "platform";
|
||||
|
||||
-- CreateEnum
|
||||
CREATE TYPE "LlmCostUnit" AS ENUM ('RUN', 'TOKENS');
|
||||
|
||||
|
||||
Reference in New Issue
Block a user